Merge version_2 into main #2
@@ -1,54 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Premium Dates | Gourmet Quality Handpicked Dates Online", description: "Discover authentic, premium dates sourced from heritage date palms. Handpicked quality, 100% natural nutrition, sustainable farming. Order your premium collection today.", keywords: "premium dates, gourmet dates, medjool dates, deglet noor, organic dates, healthy snacks, natural food", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Premium Dates | Discover Gourmet Quality Handpicked Dates", description: "Experience nature's perfect candy. Premium, handpicked dates with 500+ years of heritage. Free shipping on first order.", url: "https://premiuindates.com", siteName: "Premium Dates", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/bowl-dry-plum-fruits-placed-white-background-high-quality-photo_114579-75789.jpg", alt: "Premium dates collection"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Premium Dates | Handpicked Gourmet Quality", description: "Discover premium dates sourced from heritage date palms. Natural nutrition, sustainable sourcing, authentic taste.", images: ["http://img.b2bpic.net/free-photo/bowl-dry-plum-fruits-placed-white-background-high-quality-photo_114579-75789.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Premium Dates", description: "Premium Dates - Discover the Sweet Heritage"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1390,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 ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Leaf, Palmtree, Globe, Users, Award } from 'lucide-react';
|
||||
import { Leaf, Palmtree, Globe, Users, Award, Star } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -45,7 +45,7 @@ export default function LandingPage() {
|
||||
tag="Premium Dates"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
title="Discover the Sweet Heritage of Premium Dates"
|
||||
title="10,000+ Happy Customers Trust Us"
|
||||
description="Experience nature's perfect candy sourced from the finest date palms. Handpicked, carefully processed, and delivered fresh to your doorstep. Every bite tells a story of tradition, quality, and authentic taste."
|
||||
background={{ variant: "plain" }}
|
||||
mediaItems={[
|
||||
|
||||
Reference in New Issue
Block a user