Update src/app/layout.tsx
This commit is contained in:
@@ -1,40 +1,27 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Space_Grotesk } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
const spaceGrotesk = Space_Grotesk({
|
||||
variable: "--font-space-grotesk", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "BASE — Reference-Level Audio Speakers",
|
||||
description: "Engineered acoustics, controlled dispersion, and room-adaptive DSP. Professional monitoring systems built like laboratory instruments with disclosed test conditions.",
|
||||
keywords: "professional speakers, studio monitors, audio reference, acoustic engineering, calibration",
|
||||
metadataBase: new URL("https://base-audio.com"),
|
||||
title: "BASE — Reference-Level Audio Speakers", description: "Engineered acoustics, controlled dispersion, and room-adaptive DSP. Professional monitoring systems built like laboratory instruments with disclosed test conditions.", keywords: "professional speakers, studio monitors, audio reference, acoustic engineering, calibration", metadataBase: new URL("https://base-audio.com"),
|
||||
alternates: {
|
||||
canonical: "https://base-audio.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "BASE — Reference-Level Audio Speakers",
|
||||
description: "Precision monitoring systems for studios, control rooms, and critical listening environments.",
|
||||
url: "https://base-audio.com",
|
||||
siteName: "BASE Audio Systems",
|
||||
type: "website",
|
||||
images: [
|
||||
title: "BASE — Reference-Level Audio Speakers", description: "Precision monitoring systems for studios, control rooms, and critical listening environments.", url: "https://base-audio.com", siteName: "BASE Audio Systems", type: "website", images: [
|
||||
{
|
||||
url: "https://img.b2bpic.net/free-photo/square-music-speaker-closeup-interior-room_169016-51647.jpg",
|
||||
alt: "BASE speaker system reference-level output"
|
||||
url: "https://img.b2bpic.net/free-photo/square-music-speaker-closeup-interior-room_169016-51647.jpg", alt: "BASE speaker system reference-level output"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "BASE — Reference-Level Audio Speakers",
|
||||
description: "Engineered acoustics, controlled dispersion, and room-adaptive DSP.",
|
||||
images: ["https://img.b2bpic.net/free-photo/square-music-speaker-closeup-interior-room_169016-51647.jpg"]
|
||||
card: "summary_large_image", title: "BASE — Reference-Level Audio Speakers", description: "Engineered acoustics, controlled dispersion, and room-adaptive DSP.", images: ["https://img.b2bpic.net/free-photo/square-music-speaker-closeup-interior-room_169016-51647.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
@@ -51,7 +38,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} antialiased`}
|
||||
className={`${spaceGrotesk.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1277,4 +1264,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user