diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 0c38d44..f0cc43b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 110564d..0ceb2cc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {