7 Commits

Author SHA1 Message Date
04963c20a0 Merge version_3 into main
Merge version_3 into main
2026-03-05 15:43:49 +00:00
9db74f0228 Update src/app/page.tsx 2026-03-05 15:43:45 +00:00
c2147cd4b9 Update src/app/layout.tsx 2026-03-05 15:43:44 +00:00
5e36551eeb Merge version_2 into main
Merge version_2 into main
2026-03-05 15:27:36 +00:00
5a9a59ad62 Update src/app/layout.tsx 2026-03-05 15:27:32 +00:00
3e0d20aede Merge version_1 into main
Merge version_1 into main
2026-03-05 15:22:49 +00:00
28dd6aa402 Merge version_1 into main
Merge version_1 into main
2026-03-05 15:21:35 +00:00
2 changed files with 10 additions and 38 deletions

View File

@@ -1,54 +1,27 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ShopHub - Premium Products & Fast Delivery | Shop Online", description: "Discover premium products with fast 2-3 day delivery, quality guaranteed, and 24/7 customer support. Shop trusted brands at ShopHub.", keywords: "online shopping, ecommerce, products, fast delivery, quality guaranteed, customer service", robots: {
index: true,
follow: true,
},
openGraph: {
title: "ShopHub - Premium Products & Fast Delivery", description: "Discover premium products with fast 2-3 day delivery, quality guaranteed, and 24/7 customer support.", type: "website", siteName: "ShopHub", images: [
{
url: "http://img.b2bpic.net/free-photo/person-setting-up-online-store-uploading-products-laptop_73899-54387.jpg", alt: "ShopHub - Premium Shopping Experience"},
],
},
twitter: {
card: "summary_large_image", title: "ShopHub - Premium Products & Fast Delivery", description: "Discover premium products with fast delivery and exceptional customer service.", images: ["http://img.b2bpic.net/free-photo/person-setting-up-online-store-uploading-products-laptop_73899-54387.jpg"],
},
title: "ShopHub - Premium Products & Fast Shipping", description: "Discover premium products with fast shipping and excellent customer service. Trusted by 50,000+ happy customers."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1389,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -70,7 +70,7 @@ export default function LandingPage() {
<div id="products" data-section="products">
<ProductCardThree
title="Featured Products"
description="Explore our handpicked selection of premium items designed for modern living"
description="Explore our handpicked selection of premium items with free returns within 30 days, price match guarantee, and risk-free satisfaction assurance"
tag="Shop Now"
textboxLayout="default"
useInvertedBackground={true}