From c01e32dda392e47805da8da99c97b7a9afeba659 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:17:49 +0000 Subject: [PATCH 1/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index a0aecad..e1529c5 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,7 +29,7 @@ export default function BlogPage() { brandName="Persik" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "#products" }, + { name: "Shop", id: "/shop" }, { name: "About", id: "#about" }, { name: "Testimonials", id: "#testimonials" }, { name: "FAQ", id: "#faq" }, @@ -61,9 +61,9 @@ export default function BlogPage() { columns={[ { title: "Shop", items: [ - { label: "Bouquets", href: "#products" }, - { label: "Arrangements", href: "#products" }, - { label: "Gifts", href: "#products" }, + { label: "Bouquets", href: "/shop" }, + { label: "Arrangements", href: "/shop" }, + { label: "Gifts", href: "/shop" }, ], }, { -- 2.49.1 From 6743f20e660681e85762ddaac7d6ab50056f537f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:17:51 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 915529f..43bb413 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -13,7 +13,7 @@ export const metadata: Metadata = { openGraph: { title: "Persik Flowers - Fresh Flowers for Every Occasion", description: "Discover exquisite bouquets and arrangements from Persik. Your local flower shop for all occasions, offering fresh flowers and expert floral design.", url: "https://www.persikflowers.com", siteName: "Persik", images: [ { - url: "https://img.b2bpic.net/free-photo/flowers-bouquet-dining-table_1339-1210.jpg", alt: "Beautiful bouquet of fresh flowers"}, + url: "https://img.b2bpic.net/free-photo/flowers-bouquet-dining-table_1339-1210.jpg", alt: "Beautiful bouquet of fresh flowers"} ], type: "website"}, twitter: { -- 2.49.1 From 3dbef719d5c1677baa1f19f543fd5d427e1f65ed Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:17:51 +0000 Subject: [PATCH 3/6] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f34a58e..d989fce 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,8 +29,8 @@ export default function LandingPage() { Date: Fri, 20 Feb 2026 13:17:52 +0000 Subject: [PATCH 4/6] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 65034f5..3e2e6cd 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -67,7 +67,14 @@ export default function ProductPage({ params }: ProductPageProps) { }, [cartItems, checkout, getCheckoutItems]); const navbarProps = { - brandName: "Persik", navItems: [{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }], + brandName: "Persik", navItems: [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/shop" }, + { name: "About", id: "#about" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" } + ], button: { text: "Cart", onClick: () => setCartOpen(true) }, mobileNavContent: (
@@ -83,7 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) { const footerProps = { imageSrc: "https://img.b2bpic.net/free-photo/woman-holds-festive-flower-arrangement-with-bright-chrysanthemum-flowers_169016-51483.jpg?_wi=4", imageAlt: "Soft focus background image of various flowers", logoText: "Persik Flowers", copyrightText: "© 2024 Persik | All rights reserved", columns: [ - { title: "Shop", items: [{ label: "Bouquets", href: "#products" }, { label: "Arrangements", href: "#products" }, { label: "Gifts", href: "#products" }] }, + { title: "Shop", items: [{ label: "Bouquets", href: "/shop" }, { label: "Arrangements", href: "/shop" }, { label: "Gifts", href: "/shop" }] }, { title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Testimonials", href: "#testimonials" }, { label: "FAQ", href: "#faq" }] }, { title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Delivery Info", href: "https://example.com/delivery" }, { label: "Privacy Policy", href: "https://example.com/privacy" }] } ] -- 2.49.1 From 82fe096a9ab855a9838d32624fec591345aa5c2b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:17:53 +0000 Subject: [PATCH 5/6] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 6b2325a..ec39bef 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -42,7 +42,14 @@ export default function ShopPage() { }, [cartItems, checkout, getCheckoutItems]); const navbarProps = { - brandName: "Persik", navItems: [{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }], + brandName: "Persik", navItems: [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/shop" }, + { name: "About", id: "#about" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" } + ], button: { text: "Cart", onClick: () => setCartOpen(true) }, mobileNavContent: (
@@ -58,7 +65,7 @@ export default function ShopPage() { const footerProps = { imageSrc: "https://img.b2bpic.net/free-photo/woman-holds-festive-flower-arrangement-with-bright-chrysanthemum-flowers_169016-51483.jpg?_wi=3", imageAlt: "Soft focus background image of various flowers", logoText: "Persik Flowers", copyrightText: "© 2024 Persik | All rights reserved", columns: [ - { title: "Shop", items: [{ label: "Bouquets", href: "#products" }, { label: "Arrangements", href: "#products" }, { label: "Gifts", href: "#products" }] }, + { title: "Shop", items: [{ label: "Bouquets", href: "/shop" }, { label: "Arrangements", href: "/shop" }, { label: "Gifts", href: "/shop" }] }, { title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Testimonials", href: "#testimonials" }, { label: "FAQ", href: "#faq" }] }, { title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Delivery Info", href: "https://example.com/delivery" }, { label: "Privacy Policy", href: "https://example.com/privacy" }] } ] -- 2.49.1 From f32df0f2bd871eb702c87918b341144c1e9bb835 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:17:53 +0000 Subject: [PATCH 6/6] Update src/app/styles/variables.css --- src/app/styles/variables.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 13ef4fe..433e81a 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,21 +2,21 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #fffafa;; - --card: #fff7f7;; - --foreground: #1a0000;; - --primary-cta: #e63946;; + /* --background: #f5f5f5;; + --card: #ffffff;; + --foreground: #1c1c1c;; + --primary-cta: #159c49;; --secondary-cta: #ffffff;; - --accent: #f5c4c7;; - --background-accent: #f09199;; */ + --accent: #6139e6;; + --background-accent: #a8e8ba;; */ - --background: #fffafa;; - --card: #fff7f7;; - --foreground: #1a0000;; - --primary-cta: #e63946;; + --background: #f5f5f5;; + --card: #ffffff;; + --foreground: #1c1c1c;; + --primary-cta: #159c49;; --secondary-cta: #ffffff;; - --accent: #f5c4c7;; - --background-accent: #f09199;; + --accent: #6139e6;; + --background-accent: #a8e8ba;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1