- {t('home.title')} -
- - {/* Tagline */} -- {t('home.tagline')} -
- - {/* Feature Highlights */} -- {feature.title} -
-- {feature.description} -
+diff --git a/src/app/page.tsx b/src/app/page.tsx index 4611dbc..ef79253 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,108 +1,216 @@ -'use client'; +'use client' -import Image from "next/image"; -import { useRouter } from 'next/navigation'; -import GlobalAnimatedBackground from './background/GlobalAnimatedBackground'; -import Footer from './components/Footer'; -import Header from './components/nav/Header'; -import { useTranslation } from './i18n/useTranslation'; +import { useState } from 'react' +import { Dialog, DialogPanel } from '@headlessui/react' +import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline' -export default function Home() { - const router = useRouter(); - const { t } = useTranslation(); +const navigation = [ + { name: 'Shop', href: '/shop' }, + { name: 'Affiliate-Links', href: '#' }, + { name: 'Memberships', href: '#' }, + { name: 'About us', href: '#' }, +] + +export default function Example() { + const [mobileMenuOpen, setMobileMenuOpen] = useState(false) return ( -
- {t('home.tagline')} -
- - {/* Feature Highlights */} -- {feature.description} -
+