5 Commits

Author SHA1 Message Date
a04aa89fa9 Update src/app/page.tsx 2026-03-04 15:29:14 +00:00
c2f7498de0 Update src/app/page.tsx 2026-03-04 15:17:17 +00:00
b746a83e44 Update src/app/layout.tsx 2026-03-04 15:17:16 +00:00
4ac859b929 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:11:25 +00:00
e8b560bd4c Merge version_1 into main
Merge version_1 into main
2026-03-04 14:09:31 +00:00
2 changed files with 12 additions and 46 deletions

View File

@@ -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>
);
}

View File

@@ -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"