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 HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import { ThemeProvider } from '@/components/ui/ThemeProvider';
|
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
return (
|
return (
|
||||||
@@ -13,22 +13,27 @@ export default function HomePage() {
|
|||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="compact"
|
contentWidth="medium"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="medium"
|
||||||
background="aurora"
|
background="aurora"
|
||||||
cardStyle="gradient-mesh"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="double-inset"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="glass"
|
||||||
showBlurBottom={false}
|
showBlurBottom={false}
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleMinimal
|
<NavbarStyleMinimal
|
||||||
brandName="Bloom & Petals"
|
brandName="Bloom & Petals"
|
||||||
button={{
|
button={{
|
||||||
text: "Shop Now",
|
text: "Shop Now", href: "/products"
|
||||||
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>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
@@ -55,27 +60,17 @@ export default function HomePage() {
|
|||||||
showRating={true}
|
showRating={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
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,
|
||||||
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"
|
imageSrc: "https://img.b2bpic.net/free-photo/arm-close-up-woman-with-shopping-bags_1098-2428.jpg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael Chen",
|
||||||
name: "Michael Chen",
|
handle: "@mchen_photos", testimonial: "Best floral service I've used. Fast delivery, gorgeous arrangements, and excellent customer service.", rating: 5,
|
||||||
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"
|
imageSrc: "https://img.b2bpic.net/free-photo/portrait-woman-happy-after-shopping_23-2148660676.jpg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Emily Rodriguez", handle: "@emilyrodz",
|
||||||
name: "Emily Rodriguez",
|
testimonial: "Custom arrangement was exactly what I envisioned. The florist understood my vision perfectly.", rating: 5,
|
||||||
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"
|
imageSrc: "https://img.b2bpic.net/free-photo/girl-looking-away-medium-shot_23-2148225705.jpg"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user