Impressum

This commit is contained in:
Timo Knuth
2025-11-11 16:22:22 +01:00
parent f31992b952
commit d6ee03f4d8
6 changed files with 267 additions and 3 deletions

View File

@@ -10,6 +10,7 @@ import { Features } from '@/components/marketing/Features';
import { Pricing } from '@/components/marketing/Pricing';
import { FAQ } from '@/components/marketing/FAQ';
import { Button } from '@/components/ui/Button';
import { ScrollToTop } from '@/components/ui/ScrollToTop';
import en from '@/i18n/en.json';
export default function HomePageClient() {
@@ -37,6 +38,9 @@ export default function HomePageClient() {
{/* FAQ Section */}
<FAQ t={t} />
{/* Scroll to Top Button */}
<ScrollToTop />
</>
);
}