Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Bell, Check, Cloud, Droplet, Handshake, Heart, Leaf, Mail, Recycle, Share2, Smartphone, Sprout, Zap } from 'lucide-react';
|
||||
import { Bell, Check, Cloud, Droplet, Handshake, Heart, Leaf, Mail, Recycle, Share2, Smartphone, Sprout, Zap, ArrowRight } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -136,6 +136,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "View Environmental Impact", href: "#metrics" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user