9 Commits

Author SHA1 Message Date
8641f5fad0 Switch to version 2: modified src/app/page.tsx 2026-03-03 18:49:10 +00:00
094880bc6b Merge version_3 into main
Merge version_3 into main
2026-03-03 18:20:52 +00:00
ed31a062b9 Update src/app/page.tsx 2026-03-03 18:20:46 +00:00
2d52bcc9a7 Merge version_2 into main
Merge version_2 into main
2026-03-03 18:11:12 +00:00
3e7bce3d41 Update src/app/page.tsx 2026-03-03 18:11:07 +00:00
224ccdc506 Update src/app/layout.tsx 2026-03-03 18:11:07 +00:00
ae98f90f2d Merge version_1 into main
Merge version_1 into main
2026-03-03 18:09:22 +00:00
70118aa5e5 Merge version_1 into main
Merge version_1 into main
2026-03-03 17:59:26 +00:00
1c7c3b8a58 Merge version_1 into main
Merge version_1 into main
2026-03-03 17:48:29 +00:00
2 changed files with 15 additions and 55 deletions

View File

@@ -1,67 +1,28 @@
import type { Metadata } from "next";
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 inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", 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: "EchoStore - Premium E-Commerce Platform | Quality Products",
description: "Discover exceptional products at unbeatable prices. Free shipping, secure checkout, 30-day guarantee. Shop 50,000+ happy customers' favorite store.",
keywords: "ecommerce, online store, shopping, products, quality, free shipping, secure checkout",
metadataBase: new URL("https://echostore.com"),
alternates: {
canonical: "https://echostore.com",
},
openGraph: {
title: "EchoStore - Your Trusted Online Store",
description: "Discover exceptional products at unbeatable prices with free shipping and 30-day money-back guarantee.",
url: "https://echostore.com",
siteName: "EchoStore",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/online-shopping-web-shop-e-shopping-concept_53876-124856.jpg",
alt: "EchoStore - Modern E-Commerce Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "EchoStore - Premium E-Commerce Platform",
description: "Quality products, free shipping, secure checkout. Join 50,000+ happy customers.",
images: ["http://img.b2bpic.net/free-photo/online-shopping-web-shop-e-shopping-concept_53876-124856.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1429,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -101,7 +101,7 @@ export default function HomePage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Start Shopping", href: "/products" },
{ text: "Shop Now & Save 20%", href: "/products" },
{ text: "Learn More", href: "/about" },
]}
buttonAnimation="slide-up"
@@ -323,4 +323,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}