diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 176ae5a..3232956 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,13 +10,13 @@ const roboto = Roboto({ }); export const metadata: Metadata = { - title: "In My Life - A Visual Journey", description: "Explore 'In My Life', a curated photo gallery showcasing moments, emotions, and stories through stunning photography. Relive cherished memories and discover visual storytelling.", openGraph: { - title: "In My Life - A Visual Journey", description: "Explore 'In My Life', a curated photo gallery showcasing moments, emotions, and stories through stunning photography. Relive cherished memories and discover visual storytelling.", url: "/", siteName: "In My Life", images: [{ + title: "Life In Me - A Visual Journey", description: "Explore 'Life In Me', a curated photo gallery showcasing moments, emotions, and stories through stunning photography. Relive cherished memories and discover visual storytelling.", openGraph: { + title: "Life In Me - A Visual Journey", description: "Explore 'Life In Me', a curated photo gallery showcasing moments, emotions, and stories through stunning photography. Relive cherished memories and discover visual storytelling.", url: "/", siteName: "Life In Me", images: [{ url: "http://img.b2bpic.net/free-photo/skjolden-norway-may-16-2023-feet_58702-16353.jpg", alt: "Golden hour landscape" }], }, twitter: { - card: "summary_large_image", title: "In My Life - A Visual Journey", description: "Explore 'In My Life', a curated photo gallery showcasing moments, emotions, and stories through stunning photography. Relive cherished memories and discover visual storytelling.", images: ["http://img.b2bpic.net/free-photo/skjolden-norway-may-16-2023-feet_58702-16353.jpg"], + card: "summary_large_image", title: "Life In Me - A Visual Journey", description: "Explore 'Life In Me', a curated photo gallery showcasing moments, emotions, and stories through stunning photography. Relive cherished memories and discover visual storytelling.", images: ["http://img.b2bpic.net/free-photo/skjolden-norway-may-16-2023-feet_58702-16353.jpg"], }, robots: { index: true, diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c83627..e5586f6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,11 +5,13 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import FeatureProcessSteps from '@/components/sections/feature/FeatureProcessSteps'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Package } from 'lucide-react'; +import { Package, Sparkles, Heart, Eye } from 'lucide-react'; export default function SitePage() { return ( @@ -30,11 +32,13 @@ export default function SitePage() { navItems={[ { name: "Moments", id: "features" }, { name: "Products", id: "products" }, + { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, { name: "Stories", id: "testimonials" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Impact", id: "metrics" } ]} - brandName="In My Life" + brandName="Life In Me" button={{ text: "View Gallery", href: "#gallery" }} buttonClassName="min-w-fit px-4 py-2 text-sm rounded-full font-medium shadow-lg hover:shadow-xl transition-all duration-300 ease-in-out" buttonTextClassName="text-foreground" @@ -43,7 +47,7 @@ export default function SitePage() {