7 Commits

Author SHA1 Message Date
579dee2f87 Update src/app/page.tsx 2026-03-08 04:58:05 +00:00
cc0a57eeef Update src/app/layout.tsx 2026-03-08 04:58:05 +00:00
4dd666c865 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:31:06 +00:00
1da6a6c93b Merge version_1 into main
Merge version_1 into main
2026-03-07 14:29:59 +00:00
ce8218da1c Merge version_1 into main
Merge version_1 into main
2026-03-07 14:28:39 +00:00
7748589ce7 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:27:06 +00:00
f4dc5d93c7 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:25:01 +00:00
2 changed files with 13 additions and 49 deletions

View File

@@ -1,57 +1,22 @@
import type { Metadata } from "next";
import { Libre_Baskerville, Inter } from "next/font/google";
import { Halant } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle. Shop bold streetwear designs with exceptional quality and unique artistic prints.", keywords: "graphic t-shirts, streetwear, fashion, premium tees, modern style, artistic prints", metadataBase: new URL("https://yourlogo.com"),
alternates: {
canonical: "https://yourlogo.com"},
openGraph: {
title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle. Shop bold streetwear designs with exceptional quality.", url: "https://yourlogo.com", siteName: "Your Logo", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-happy-man-holding-glasses_23-2149004834.jpg", alt: "Premium graphic t-shirt showcase"},
],
},
twitter: {
card: "summary_large_image", title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle", images: ["http://img.b2bpic.net/free-photo/medium-shot-happy-man-holding-glasses_23-2149004834.jpg"],
},
robots: {
index: true,
follow: true,
},
title: 'Premium Graphic Tees | Your Logo',
description: 'Discover our collection of premium graphic t-shirts for modern lifestyle',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} ${halant.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -175,7 +175,7 @@ export default function HomePage() {
showRating={true}
testimonials={[
{
id: "1", name: "Alex Johnson", handle: "@alexstyle", testimonial: "Amazing quality and design! The fit is perfect and the graphic print is stunning. Already ordered my second tee!", rating: 5,
id: "1", name: "Alex Johnson", handle: "@alexstyle", testimonial: "Amazing quality and design! The fit is perfect and the graphic print is stunning. I absolutely love wearing these tees—they've become my go-to choice for casual outings and weekend hangouts. The attention to detail in the printing is remarkable, and the colors stay vibrant even after multiple washes. Already ordered my second tee and I'm planning to get more from different designs!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-smiling-boy-cafe_23-2148436234.jpg", imageAlt: "Alex Johnson profile"
},
{
@@ -255,4 +255,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}