Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a04aa89fa9 | |||
| c2f7498de0 | |||
| b746a83e44 | |||
| 4ac859b929 | |||
| e8b560bd4c |
@@ -1,55 +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";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
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: "Fresh Vegetables Online | Organic Produce Delivery", description: "Order fresh, organic vegetables online with 24-hour delivery. Get tomatoes, carrots, spinach, and more at great prices from Fresh Veggies.", keywords: "vegetables, organic, fresh, delivery, tomatoes, carrots, spinach, cucumber, online shopping", metadataBase: new URL("https://freshveggies.com"),
|
||||
alternates: {
|
||||
canonical: "https://freshveggies.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Fresh Vegetables Delivered Online", description: "Premium quality organic vegetables delivered to your door in 24 hours.", url: "https://freshveggies.com", siteName: "Fresh Veggies", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU3HBr0ASUsLHhY2eo7hi8XLVl/uploaded-1772633293894-1zghgt5r.jpg", alt: "Fresh organic vegetables"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Fresh Vegetables Delivered Online", description: "Premium quality organic vegetables delivered to your door in 24 hours.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU3HBr0ASUsLHhY2eo7hi8XLVl/uploaded-1772633293894-1zghgt5r.jpg"]
|
||||
}
|
||||
};
|
||||
title: "Fresh Veggies - Organic Vegetables Delivered", description: "Premium quality organic vegetables sourced directly from local farmers. Get the freshest produce with our smart ordering and delivery system."};
|
||||
|
||||
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: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwe
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Leaf } from 'lucide-react';
|
||||
import { Leaf, Star } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -51,7 +51,7 @@ export default function LandingPage() {
|
||||
{ value: "100%", label: "Fresh Guarantee" },
|
||||
{ value: "50+", label: "Vegetables" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
enableKpiAnimation={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU3HBr0ASUsLHhY2eo7hi8XLVl/uploaded-1772633293894-1zghgt5r.jpg"
|
||||
imageAlt="Fresh organic vegetables"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -67,7 +67,9 @@ export default function LandingPage() {
|
||||
<ProductCardOne
|
||||
title="Fresh Vegetables"
|
||||
description="Explore our wide variety of fresh, organic vegetables handpicked for quality and freshness"
|
||||
tag="Premium Quality"
|
||||
tag="Best Sellers"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user