From 8f9a8a0e1f6234a6769e2c6b5efc6939fee58428 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 13:54:32 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 3a6e19e..439d228 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -98,4 +98,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 8409bf3dd4f4003e604ba17223f66462e713170c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 13:54:33 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++++++-------------------------------- 1 file changed, 10 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 279ae4a..0739764 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,22 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Inter } from "next/font/google"; +import "@/app/globals.css"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Giina Flowers - Fresh Floral Arrangements Delivered", description: "Discover exquisite handcrafted flower arrangements by Giina. Premium fresh blooms delivered with care. Shop our collections today.", keywords: "fresh flowers, flower delivery, floral arrangements, bouquets, premium flowers", openGraph: { - title: "Giina Flowers - Premium Floral Arrangements", description: "Experience the beauty of nature with Giina's handcrafted floral arrangements. Fresh flowers delivered with love.", type: "website", siteName: "Giina Flowers", images: [{ - url: "https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg", alt: "Giina Flowers Collection" - }] - }, - twitter: { - card: "summary_large_image", title: "Giina Flowers - Premium Floral Arrangements", description: "Handcrafted fresh flower bouquets delivered with care and expertise.", images: ["https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Giina Flowers", description: "Exquisite handcrafted floral arrangements delivered with love"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}