Update src/app/page.tsx
This commit is contained in:
@@ -5,7 +5,7 @@ import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { ThemeProvider } from '@/components/ui/ThemeProvider';
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
@@ -13,22 +13,27 @@ export default function HomePage() {
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSizeMediumTitles"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="layered"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
showBlurBottom={false}
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleMinimal
|
||||
brandName="Bloom & Petals"
|
||||
button={{
|
||||
text: "Shop Now",
|
||||
href: "/products"
|
||||
text: "Shop Now", href: "/products"
|
||||
}}
|
||||
/>
|
||||
<div style={{ position: 'absolute', top: '20px', right: '200px', zIndex: 1000 }}>
|
||||
<Link href="/" style={{ marginRight: '15px', color: 'var(--foreground)' }}>Home</Link>
|
||||
<Link href="/about" style={{ marginRight: '15px', color: 'var(--foreground)' }}>About</Link>
|
||||
<Link href="/products" style={{ marginRight: '15px', color: 'var(--foreground)' }}>Products</Link>
|
||||
<Link href="/contact" style={{ color: 'var(--foreground)' }}>Contact</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
@@ -55,27 +60,17 @@ export default function HomePage() {
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
handle: "@sarahjohns",
|
||||
testimonial: "The flowers arrived beautifully packaged and incredibly fresh. My wife loved them! Definitely ordering again.",
|
||||
rating: 5,
|
||||
id: "1", name: "Sarah Johnson", handle: "@sarahjohns", testimonial: "The flowers arrived beautifully packaged and incredibly fresh. My wife loved them! Definitely ordering again.", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/arm-close-up-woman-with-shopping-bags_1098-2428.jpg"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
handle: "@mchen_photos",
|
||||
testimonial: "Best floral service I've used. Fast delivery, gorgeous arrangements, and excellent customer service.",
|
||||
rating: 5,
|
||||
id: "2", name: "Michael Chen",
|
||||
handle: "@mchen_photos", testimonial: "Best floral service I've used. Fast delivery, gorgeous arrangements, and excellent customer service.", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/portrait-woman-happy-after-shopping_23-2148660676.jpg"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez",
|
||||
handle: "@emilyrodz",
|
||||
testimonial: "Custom arrangement was exactly what I envisioned. The florist understood my vision perfectly.",
|
||||
rating: 5,
|
||||
id: "3", name: "Emily Rodriguez", handle: "@emilyrodz",
|
||||
testimonial: "Custom arrangement was exactly what I envisioned. The florist understood my vision perfectly.", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/girl-looking-away-medium-shot_23-2148225705.jpg"
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user