6 Commits

Author SHA1 Message Date
eac5faeee3 Merge version_2 into main
Merge version_2 into main
2026-03-05 06:39:36 +00:00
67ca5c0d04 Update src/app/page.tsx 2026-03-05 06:39:32 +00:00
a3e00d460c Update src/app/layout.tsx 2026-03-05 06:39:31 +00:00
c2cb5ed16c Merge version_1 into main
Merge version_1 into main
2026-03-05 06:38:02 +00:00
10f006beaa Merge version_1 into main
Merge version_1 into main
2026-03-05 06:37:05 +00:00
081406477d Merge version_1 into main
Merge version_1 into main
2026-03-05 06:34:40 +00:00
2 changed files with 9 additions and 60 deletions

View File

@@ -1,70 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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 = { export const metadata: Metadata = {
title: "Boutique Tone - Premium Guitar Amplifiers & Effects Pedals", title: "Boutique Tone - Premium Handcrafted Amplifiers & Effects", description: "Handcrafted amplifiers and multi-effects pedals built for professionals who demand uncompromising quality."};
description: "Handcrafted boutique amplifiers and multi-effects pedals engineered for professional musicians. Explore premium gear with interactive demos and detailed specifications.",
keywords: "boutique amplifier, guitar amp, effects pedals, professional audio gear, handcrafted equipment, premium tone",
openGraph: {
title: "Boutique Tone - Engineered for Your Sound",
description: "Premium handcrafted guitar amplifiers and effects pedals for discerning professionals.",
siteName: "Boutique Tone",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/black-electric-guitar-speaker-closeup-guitar-amplifier-musical-equipment_169016-51155.jpg",
alt: "Premium Boutique Tone Amplifier",
},
],
},
twitter: {
card: "summary_large_image",
title: "Boutique Tone - Premium Guitar Gear",
description: "Handcrafted amplifiers and effects pedals for professional musicians.",
images: ["http://img.b2bpic.net/free-photo/black-electric-guitar-speaker-closeup-guitar-amplifier-musical-equipment_169016-51155.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1432,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -104,7 +104,7 @@ export default function HomePage() {
imageAlt="Premium boutique guitar amplifier" imageAlt="Premium boutique guitar amplifier"
buttons={[ buttons={[
{ {
text: "Discover Your Gear", href: "#products"}, text: "Explore Premium Amplifiers", href: "#products"},
{ {
text: "View Specifications", href: "/products"}, text: "View Specifications", href: "/products"},
]} ]}
@@ -259,4 +259,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }