diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index f34c6e4..c537785 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -6,7 +6,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
-export default function LandingPage() {
+export default function AboutPage() {
return (
@@ -52,62 +40,27 @@ export default function LandingPage() {
title="Beautiful In Your Skin"
description="We believe lingerie is more than apparel; it’s an extension of your self-love. Every piece at Sweet Temptation is crafted to empower your spirit and celebrate your natural beauty."
bulletPoints={[
- {
- title: "Empowered Design",
- description: "Lingerie that builds confidence.",
- },
- {
- title: "Luxury Quality",
- description: "Sustainable, soft, premium materials.",
- },
- {
- title: "Inclusive Fit",
- description: "Sizes that embrace every curve.",
- },
+ { title: "Empowered Design", description: "Lingerie that builds confidence." },
+ { title: "Luxury Quality", description: "Sustainable, soft, premium materials." },
+ { title: "Inclusive Fit", description: "Sizes that embrace every curve." },
]}
imageSrc="https://pixabay.com/get/g80327732060e1ee186f36e7bf436725591c9c7546ff02d97968bfbf2455a4f8ab712a0850b9334e20989bdb6ac62180f8fedc4fa7119d254ed471b37cc71f4c0_1280.jpg"
mediaAnimation="blur-reveal"
- videoSrc="https://example.com/about-video.mp4"
/>
);
-}
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 156cd82..c7ae134 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -24,22 +24,10 @@ export default function LandingPage() {
@@ -47,75 +35,33 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index 4463d5f..db34bf6 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -6,7 +6,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
-export default function LandingPage() {
+export default function ShopPage() {
return (
@@ -50,35 +38,10 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
- useInvertedBackground={false}
products={[
- {
- id: "p1",
- brand: "Sweet Temptation",
- name: "Midnight Lace Set",
- price: "$45.00",
- rating: 5,
- reviewCount: "12",
- imageSrc: "https://pixabay.com/get/ga372394b15e3d48300ef9d5f75825653b4aa5f97c487fd7a1ba27a7d5310d145d382ed284bd62035d24b756b03a4125228e2bf2bbca2628e6c5ff1fee4102a8b_1280.jpg",
- },
- {
- id: "p2",
- brand: "Sweet Temptation",
- name: "Blush Silk Panty",
- price: "$12.00",
- rating: 4,
- reviewCount: "8",
- imageSrc: "https://pixabay.com/get/gbe719ac16c836d454b8b7afb36427b0605df987d5b1c168de68660de3d1c25102be2f3a678f9abb4d928fc0a453de1a9ab4d560489867115c3b7146862aad643_1280.jpg",
- },
- {
- id: "p3",
- brand: "Sweet Temptation",
- name: "Sculpt Shapewear",
- price: "$55.00",
- rating: 5,
- reviewCount: "24",
- imageSrc: "https://pixabay.com/get/g774f67d4a7a2770e516f8b22062b0b0f5fc56f33869d5e8cf2b718b80c64494856677b332ae642341b1707be9ba75f13c3010edb78fa59ff35fe4c537d221347_1280.jpg",
- },
+ { id: "p1", brand: "Sweet Temptation", name: "Midnight Lace Set", price: "$45.00", rating: 5, reviewCount: "12", imageSrc: "https://pixabay.com/get/ga372394b15e3d48300ef9d5f75825653b4aa5f97c487fd7a1ba27a7d5310d145d382ed284bd62035d24b756b03a4125228e2bf2bbca2628e6c5ff1fee4102a8b_1280.jpg" },
+ { id: "p2", brand: "Sweet Temptation", name: "Blush Silk Panty", price: "$12.00", rating: 4, reviewCount: "8", imageSrc: "https://pixabay.com/get/gbe719ac16c836d454b8b7afb36427b0605df987d5b1c168de68660de3d1c25102be2f3a678f9abb4d928fc0a453de1a9ab4d560489867115c3b7146862aad643_1280.jpg" },
+ { id: "p3", brand: "Sweet Temptation", name: "Sculpt Shapewear", price: "$55.00", rating: 5, reviewCount: "24", imageSrc: "https://pixabay.com/get/g774f67d4a7a2770e516f8b22062b0b0f5fc56f33869d5e8cf2b718b80c64494856677b332ae642341b1707be9ba75f13c3010edb78fa59ff35fe4c537d221347_1280.jpg" },
]}
title="Shop Our Collections"
description="Explore our curated range of delicate lace, supportive shapewear, and signature sets."
@@ -87,41 +50,16 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file