From 3bf253039ec4987568edf77203fef42b44487e3c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 23:41:51 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3fc19d0..c65ea54 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "GrowSmart: AI-Powered Smart Indoor Garden | Effortless Plant Care", description: "Grow thriving indoor plants with AI automation. Save 80% water, grow 5x faster. Smart monitoring, mobile app, sustainable technology for eco-conscious homes.", keywords: "smart garden, indoor gardening, AI plant care, smart home, sustainability, urban gardening, hydroponics, automation", metadataBase: new URL("https://growsmart.com"), - alternates: { - canonical: "https://growsmart.com"}, - openGraph: { - title: "GrowSmart: AI-Powered Indoor Gardening Made Effortless", description: "Transform your space into a thriving garden with AI-powered plant care. Monitor, automate, and nurture from anywhere.", url: "https://growsmart.com", siteName: "GrowSmart", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXzWLqqnPU1A1Ym4CrZseqNNgY/a-stunning-3d-rendered-smart-indoor-gard-1772753833782-93aff94c.png", alt: "A stunning 3D rendered smart indoor garden device with LED grow lights, sleek modern design in matte"}, - ], - }, - twitter: { - card: "summary_large_image", title: "GrowSmart: AI Indoor Garden", description: "Effortless plant care powered by AI. Grow green, save water, live sustainably.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXzWLqqnPU1A1Ym4CrZseqNNgY/a-stunning-3d-rendered-smart-indoor-gard-1772753833782-93aff94c.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "GrowSmart - AI-Powered Smart Indoor Gardening", description: "Grow thriving plants with zero effort. AI-powered smart indoor gardening that monitors, waters, and nurtures your plants automatically from anywhere."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}