Merge version_2 into main #2
@@ -1,33 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "PlatesMart - Premium Dinnerware & Tableware", description: "Discover handcrafted ceramic plates and premium dinnerware sets. Elevate your dining experience with our curated collection of elegant tableware.", keywords: "plates, dinnerware, tableware, ceramic, dining, luxury plates, dishware", metadataBase: new URL("https://platesmart.com"),
|
||||
alternates: {
|
||||
canonical: "https://platesmart.com"},
|
||||
canonical: "https://platesmart.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "PlatesMart - Premium Dinnerware Collection", description: "Explore our exclusive collection of handcrafted ceramic plates and premium dinnerware sets.", url: "https://platesmart.com", siteName: "PlatesMart", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-dark-haired-woman-serving-table-kitchen_259150-59709.jpg", alt: "Premium ceramic plates collection"},
|
||||
url: "http://img.b2bpic.net/free-photo/young-dark-haired-woman-serving-table-kitchen_259150-59709.jpg", alt: "Premium ceramic plates collection"
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
@@ -48,7 +38,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
className={`${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1423,4 +1413,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -27,7 +27,7 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="PlatesMart"
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
@@ -55,13 +55,17 @@ export default function LandingPage() {
|
||||
description="Discover our handpicked selection of premium dinnerware sets designed for modern homes."
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Elegance White Plate Set", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-dinner-table-background_53876-128219.jpg", imageAlt: "Elegance White Plate Set"},
|
||||
id: "1", name: "Elegance White Plate Set", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-dinner-table-background_53876-128219.jpg", imageAlt: "Elegance White Plate Set"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Minimalist Gray Collection", price: "$109.99", imageSrc: "http://img.b2bpic.net/free-photo/variety-white-dinnerware_661915-402.jpg", imageAlt: "Minimalist Gray Collection"},
|
||||
id: "2", name: "Minimalist Gray Collection", price: "$109.99", imageSrc: "http://img.b2bpic.net/free-photo/variety-white-dinnerware_661915-402.jpg", imageAlt: "Minimalist Gray Collection"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Azure Blue Premium Plates", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-crockery-antique-store_23-2149640759.jpg", imageAlt: "Azure Blue Premium Plates"},
|
||||
id: "3", name: "Azure Blue Premium Plates", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-crockery-antique-store_23-2149640759.jpg", imageAlt: "Azure Blue Premium Plates"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Porcelain Luxury 6-Piece", price: "$159.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-black-plates-dark-background_179666-19288.jpg", imageAlt: "Porcelain Luxury 6-Piece"},
|
||||
id: "4", name: "Porcelain Luxury 6-Piece", price: "$159.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-black-plates-dark-background_179666-19288.jpg", imageAlt: "Porcelain Luxury 6-Piece"
|
||||
},
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
@@ -78,16 +82,20 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Mitchell", role: "Home Chef", company: "Chicago, IL", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Sarah Mitchell"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Sarah Mitchell"
|
||||
},
|
||||
{
|
||||
id: "2", name: "David Chen", role: "Interior Designer", company: "New York, NY", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "David Chen"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "David Chen"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emma Rodriguez", role: "Restaurant Owner", company: "Miami, FL", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Emma Rodriguez"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Emma Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Williams", role: "Event Planner", company: "San Francisco, CA", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "James Williams"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "James Williams"
|
||||
},
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
@@ -158,4 +166,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #106EFB;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffffe6;
|
||||
--primary-cta: #1a1a1a;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta: #ffffffe6;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #106EFB;
|
||||
--accent: #737373;
|
||||
--background-accent: #000000;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user