Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 15:17:22 +00:00
2 changed files with 11 additions and 45 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 (
@@ -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"