diff --git a/src/app/page.tsx b/src/app/page.tsx index db71471..7919196 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,249 +1,71 @@ -"use client"; - +import type { Metadata } from "next"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterBase from '@/components/sections/footer/FooterBase'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import Link from "next/link"; + +export const metadata: Metadata = { + title: 'Monaco Life | Billionaire News Portal', + description: 'Exclusive insights into the world’s most elite principality. High-end news from yachting to real estate.', +}; + +export default function Page() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Yachts", id: "/yachts" }, + { name: "Real Estate", id: "/real-estate" }, + { name: "Lifestyle", id: "/lifestyle" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
); -} +} \ No newline at end of file