6 Commits

Author SHA1 Message Date
c31fbc7476 Update src/app/page.tsx 2026-03-09 09:24:46 +00:00
7bda146b07 Update src/app/layout.tsx 2026-03-09 09:24:46 +00:00
cc5f50ea1a Merge version_2 into main
Merge version_2 into main
2026-03-09 09:22:17 +00:00
5bafc66ee2 Update src/app/page.tsx 2026-03-09 09:22:13 +00:00
1d6d4223a0 Update src/app/layout.tsx 2026-03-09 09:22:12 +00:00
c372953746 Merge version_1 into main
Merge version_1 into main
2026-03-09 05:47:46 +00:00
2 changed files with 10 additions and 46 deletions

View File

@@ -1,56 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "SilverPro - Premium 3D Silver Products & Luxury Design", description: "Discover luxury silver products with immersive 3D animations. Fully responsive design with premium UI/UX. Experience elegance and innovation.", keywords: "silver products, luxury design, 3D animation, responsive website, premium UI/UX, metallic accessories", metadataBase: new URL("https://silverpro.com"),
openGraph: {
title: "SilverPro - Luxury Silver Innovation", description: "Experience premium silver products with cutting-edge 3D visualization and responsive design.", type: "website", siteName: "SilverPro", images: [
{
url: "http://img.b2bpic.net/free-photo/brushed-metal-texture-with-diagonal-sheen_84443-75019.jpg", alt: "SilverPro luxury collection"
}
]
},
twitter: {
card: "summary_large_image", title: "SilverPro - Premium Silver Products", description: "Luxury 3D-animated silver products with responsive design and premium UI/UX.", images: ["http://img.b2bpic.net/free-photo/brushed-metal-texture-with-diagonal-sheen_84443-75019.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "SilverPro - Premium Silver Products", description: "Experience luxury redefined with premium silver products crafted with precision and elegance."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -45,7 +45,7 @@ export default function LandingPage() {
logoText="SilverPro"
description="Experience luxury redefined. Discover premium silver products crafted with precision and elegance. Our 3D interactive showcase brings innovation to life with smooth animations and immersive design."
buttons={[
{ text: "Explore Collection", href: "products" },
{ text: "Shop Now", href: "products" },
{ text: "Learn More", href: "about" }
]}
background={{ variant: "sparkles-gradient" }}
@@ -96,6 +96,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
buttonAnimation="slide-up"
cardNameClassName="text-sm font-semibold"
/>
</div>
@@ -232,4 +233,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}