diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2cdabd3..94779cd 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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}
>
+
+ Home
+ About
+ Products
+ Contact
+
@@ -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"
}
]}