Update src/app/page.tsx

This commit is contained in:
2026-02-16 08:54:21 +00:00
parent 66594c3dd8
commit 7c2fc3fb72

View File

@@ -7,7 +7,7 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactText from '@/components/sections/contact/ContactText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Award, CheckCircle, Eye, Heart, Leaf, Package, Palette, Shield, Sparkles, Zap } from "lucide-react";
@@ -163,15 +163,20 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to discover your perfect cup? Beauty and the Beast is dedicated to bringing timeless elegance and artisan craftsmanship into your home. Our enchanted drinkware collections are carefully curated to celebrate the beauty of handmade excellence. Whether you're looking for a personal treasure or the perfect gift, we're here to help you find something truly magical. Get in touch with our team or browse our full collection to experience the magic yourself."
animationType="entrance-slide"
background={{ variant: "plain" }}
<ContactSplit
tag="Newsletter"
title="Connect With Us"
description="Subscribe to stay updated with our latest collections and exclusive stories behind our enchanted drinkware."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
buttons={[
{ text: "Start Shopping", href: "#products" },
{ text: "Send Message", href: "#" }
]}
imageSrc="https://img.b2bpic.net/free-photo/hands-working-pottery-wheel_181624-57055.jpg"
imageAlt="Artisan at pottery wheel"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="By subscribing, you agree to receive updates about our latest collections and exclusive offers."
onSubmit={(email) => console.log('Email submitted:', email)}
/>
</div>
@@ -224,4 +229,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}