Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 67ca5c0d04 | |||
| a3e00d460c | |||
| c2cb5ed16c | |||
| 10f006beaa | |||
| 081406477d |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user