Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-04-22 14:47:43 +00:00

View File

@@ -6,7 +6,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
export default function LandingPage() {
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -24,36 +24,15 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="skinovae, MD"
button={{
text: "Book Now",
href: "/contact",
}}
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
@@ -62,43 +41,20 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
animationType="slide-up"
products={[
{
id: "r1",
name: "Acne Reduction",
price: "4 Weeks",
imageSrc: "http://img.b2bpic.net/free-photo/rhinoplasty-surgery-concept-with-man-model_23-2150036920.jpg",
},
id: "r1", name: "Acne Reduction", price: "4 Weeks", imageSrc: "http://img.b2bpic.net/free-photo/rhinoplasty-surgery-concept-with-man-model_23-2150036920.jpg"},
{
id: "r2",
name: "Rejuvenation",
price: "8 Weeks",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-models-posing-with-copy-space_23-2148313378.jpg",
},
id: "r2", name: "Rejuvenation", price: "8 Weeks", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-models-posing-with-copy-space_23-2148313378.jpg"},
{
id: "r3",
name: "Scar Improvement",
price: "3 Sessions",
imageSrc: "http://img.b2bpic.net/free-photo/before-after-portrait-woman-retouched_23-2149121643.jpg",
},
id: "r3", name: "Scar Improvement", price: "3 Sessions", imageSrc: "http://img.b2bpic.net/free-photo/before-after-portrait-woman-retouched_23-2149121643.jpg"},
{
id: "r4",
name: "Skin Brightening",
price: "2 Months",
imageSrc: "http://img.b2bpic.net/free-photo/combination-facial-features-concept_23-2150039746.jpg",
},
id: "r4", name: "Skin Brightening", price: "2 Months", imageSrc: "http://img.b2bpic.net/free-photo/combination-facial-features-concept_23-2150039746.jpg"},
{
id: "r5",
name: "Laser Results",
price: "Post-Laser",
imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-glued-decorations-face_23-2151097703.jpg",
},
id: "r5", name: "Laser Results", price: "Post-Laser", imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-glued-decorations-face_23-2151097703.jpg"},
{
id: "r6",
name: "Hydration",
price: "After 1",
imageSrc: "http://img.b2bpic.net/free-photo/combination-facial-features-concept_23-2150087698.jpg",
},
id: "r6", name: "Hydration", price: "After 1", imageSrc: "http://img.b2bpic.net/free-photo/combination-facial-features-concept_23-2150087698.jpg"},
]}
title="Before & After Results"
description="A glimpse into our success stories. *Individual results may vary.*"
@@ -110,38 +66,22 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "About",
},
{
label: "Services",
},
{
label: "Contact",
},
{ label: "About" },
{ label: "Services" },
{ label: "Contact" },
],
},
{
items: [
{
label: "Instagram",
},
{
label: "Facebook",
},
{
label: "LinkedIn",
},
{ label: "Instagram" },
{ label: "Facebook" },
{ label: "LinkedIn" },
],
},
{
items: [
{
label: "Privacy Policy",
},
{
label: "Terms of Service",
},
{ label: "Privacy Policy" },
{ label: "Terms of Service" },
],
},
]}
@@ -151,4 +91,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}