5 Commits

Author SHA1 Message Date
2d735379d6 Update src/app/page.tsx 2026-01-24 12:02:59 +00:00
ee1c8960d8 Update src/app/blog/page.tsx 2026-01-24 12:02:58 +00:00
f52efa2cb3 Update src/app/page.tsx 2026-01-22 22:21:04 +00:00
90996e7801 Update src/app/layout.tsx 2026-01-22 22:21:03 +00:00
f130936b33 Update src/app/blog/page.tsx 2026-01-22 22:21:02 +00:00
3 changed files with 19 additions and 18 deletions

View File

@@ -54,7 +54,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}?status=published`; const url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, { const response = await fetch(url, {
method: "GET", headers: { method: "GET", headers: {
"Content-Type": "application/json"}, "Content-Type": "application/json"
},
}); });
if (response.ok) { if (response.ok) {
@@ -85,7 +86,7 @@ export default function BlogPage() {
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-bubble" defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
borderRadius="sharp" borderRadius="rounded"
contentWidth="small" contentWidth="small"
sizing="largeSmallSizeLargeTitles" sizing="largeSmallSizeLargeTitles"
background="aurora" background="aurora"
@@ -117,7 +118,7 @@ export default function BlogPage() {
<BlogCardOne <BlogCardOne
blogs={posts} blogs={posts}
title="Beauty & Skincare Insights" title="Beauty & Skincare Insights"
description="Expert tips and the latest trends in skincare and beauty" description="Expert tips and the latest trends in skincare and beauty from around the world"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
carouselMode="buttons" carouselMode="buttons"
@@ -149,7 +150,7 @@ export default function BlogPage() {
title: "Support", items: [ title: "Support", items: [
{ label: "Contact Us", href: "#contact" }, { label: "Contact Us", href: "#contact" },
{ label: "FAQ", href: "#faq" }, { label: "FAQ", href: "#faq" },
{ label: "Shipping Info", href: "#" }, { label: "Worldwide Shipping", href: "#" },
{ label: "Returns", href: "#" } { label: "Returns", href: "#" }
] ]
}, },
@@ -168,4 +169,4 @@ export default function BlogPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -1263,4 +1263,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -10,14 +10,14 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Leaf, Droplet, Sprout, Wind, Mail } from "lucide-react"; import { Leaf, Droplet, Sprout, Wind, Mail, Globe } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-bubble" defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
borderRadius="sharp" borderRadius="rounded"
contentWidth="small" contentWidth="small"
sizing="largeSmallSizeLargeTitles" sizing="largeSmallSizeLargeTitles"
background="aurora" background="aurora"
@@ -69,7 +69,7 @@ export default function LandingPage() {
<div id="products" data-section="products"> <div id="products" data-section="products">
<ProductCardOne <ProductCardOne
title="Our Signature Collection" title="Our Signature Collection"
description="Discover our carefully curated skincare essentials designed to nourish and revitalize your skin." description="Discover our carefully curated skincare essentials designed to nourish and revitalize your skin. Worldwide shipping available."
products={[ products={[
{ {
id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "https://img.b2bpic.net/free-photo/arrangement-skin-care-cream_23-2148761493.jpg", imageAlt: "Hydrating Moisturizer bottle" id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "https://img.b2bpic.net/free-photo/arrangement-skin-care-cream_23-2148761493.jpg", imageAlt: "Hydrating Moisturizer bottle"
@@ -91,7 +91,7 @@ export default function LandingPage() {
<div id="benefits" data-section="benefits"> <div id="benefits" data-section="benefits">
<FeatureBento <FeatureBento
title="Why Choose Luminé" title="Why Choose Luminé"
description="Scientifically-formulated skincare products that deliver visible results with natural, sustainable ingredients." description="Scientifically-formulated skincare products that deliver visible results with natural, sustainable ingredients. Available for worldwide shipping."
features={[ features={[
{ {
title: "Natural Ingredients", description: "100% plant-based formulations free from harmful chemicals", bentoComponent: "globe" title: "Natural Ingredients", description: "100% plant-based formulations free from harmful chemicals", bentoComponent: "globe"
@@ -116,7 +116,7 @@ export default function LandingPage() {
<div id="reviews" data-section="reviews"> <div id="reviews" data-section="reviews">
<TestimonialCardFifteen <TestimonialCardFifteen
testimonial="Luminé skincare has completely transformed my routine. My skin feels more radiant and healthy than ever before. I love that it's made with natural ingredients I can trust." testimonial="Luminé skincare has completely transformed my routine. My skin feels more radiant and healthy than ever before. I love that it's made with natural ingredients I can trust. Plus, worldwide shipping made it so easy to get my products delivered wherever I am."
rating={5} rating={5}
author="Sarah Mitchell, Beauty Editor" author="Sarah Mitchell, Beauty Editor"
avatars={[ avatars={[
@@ -132,7 +132,7 @@ export default function LandingPage() {
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitMedia <FaqSplitMedia
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Everything you need to know about our skincare products and routines." description="Everything you need to know about our skincare products, worldwide shipping, and delivery."
faqs={[ faqs={[
{ {
id: "1", title: "How long does it take to see results?", content: "Most customers notice visible improvements in skin texture and radiance within 2-4 weeks of consistent use. For more significant results like reduced fine lines or hyperpigmentation, allow 6-8 weeks." id: "1", title: "How long does it take to see results?", content: "Most customers notice visible improvements in skin texture and radiance within 2-4 weeks of consistent use. For more significant results like reduced fine lines or hyperpigmentation, allow 6-8 weeks."
@@ -141,10 +141,10 @@ export default function LandingPage() {
id: "2", title: "Are your products suitable for sensitive skin?", content: "Yes! All Luminé products are formulated to be gentle and non-irritating. We use natural ingredients and avoid common irritants. We recommend patch testing first if you have very reactive skin." id: "2", title: "Are your products suitable for sensitive skin?", content: "Yes! All Luminé products are formulated to be gentle and non-irritating. We use natural ingredients and avoid common irritants. We recommend patch testing first if you have very reactive skin."
}, },
{ {
id: "3", title: "Can I use multiple products together?", content: "Absolutely. Our products are designed to work synergistically. Start with the cleanser, apply serum, and finish with the moisturizer for optimal results. Avoid combining with other active ingredients initially." id: "3", title: "Do you offer worldwide shipping?", content: "Absolutely! We ship to over 150 countries worldwide. Standard shipping typically takes 7-14 business days depending on your location. Express shipping options are also available for faster delivery."
}, },
{ {
id: "4", title: "What is your return policy?", content: "We offer a 60-day satisfaction guarantee. If you're not completely happy with your purchase, return it for a full refund or exchange." id: "4", title: "What is your return policy?", content: "We offer a 60-day satisfaction guarantee on all purchases. If you're not completely happy with your skincare, return it for a full refund or exchange. Worldwide returns are processed efficiently through our international shipping partners."
} }
]} ]}
imageSrc="https://img.b2bpic.net/free-photo/young-woman-applies-cream-her-face-looks-mirror_169016-19492.jpg" imageSrc="https://img.b2bpic.net/free-photo/young-woman-applies-cream-her-face-looks-mirror_169016-19492.jpg"
@@ -160,7 +160,7 @@ export default function LandingPage() {
<ContactCenter <ContactCenter
tag="Newsletter" tag="Newsletter"
title="Get Your Glow On" title="Get Your Glow On"
description="Subscribe to our newsletter for skincare tips, product launches, and exclusive offers delivered to your inbox." description="Subscribe to our newsletter for skincare tips, product launches, and exclusive worldwide shipping offers delivered to your inbox."
tagIcon={Mail} tagIcon={Mail}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
@@ -193,7 +193,7 @@ export default function LandingPage() {
title: "Support", items: [ title: "Support", items: [
{ label: "Contact Us", href: "#contact" }, { label: "Contact Us", href: "#contact" },
{ label: "FAQ", href: "#faq" }, { label: "FAQ", href: "#faq" },
{ label: "Shipping Info", href: "#" }, { label: "Worldwide Shipping", href: "#" },
{ label: "Returns", href: "#" } { label: "Returns", href: "#" }
] ]
}, },
@@ -211,4 +211,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }