diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a3bfd02..6333c92 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Smart Phone Concierge', - description: 'Elite technology curation and concierge services for professionals.', + title: 'Smart Phone | Technology, Refined.', + description: 'Discover the world’s most advanced smartphones — curated, configured, and delivered with precision.', openGraph: { "title": "Smart Phone | Technology, Refined.", "description": "The world’s most advanced smartphones, curated and delivered with precision.", diff --git a/src/app/page.tsx b/src/app/page.tsx index 57997af..44104e7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,144 +1,53 @@ -"use client"; +'use client'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; -import TextAbout from "@/components/sections/about/TextAbout"; -import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; -import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +export default function Home() { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Contact', id: '/contact' } + ]; -export default function Page() { return ( - +
- +
- +
- +
- +
- +
- +
- +
- +
);