Update src/app/layout.tsx
This commit is contained in:
@@ -1,40 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
import { Space_Grotesk } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
const spaceGrotesk = Space_Grotesk({
|
||||||
variable: "--font-public-sans",
|
variable: "--font-space-grotesk", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "BASE — Reference-Level Audio Speakers",
|
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"),
|
||||||
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: {
|
alternates: {
|
||||||
canonical: "https://base-audio.com"
|
canonical: "https://base-audio.com"
|
||||||
},
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "BASE — Reference-Level Audio Speakers",
|
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: [
|
||||||
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",
|
url: "https://img.b2bpic.net/free-photo/square-music-speaker-closeup-interior-room_169016-51647.jpg", alt: "BASE speaker system reference-level output"
|
||||||
alt: "BASE speaker system reference-level output"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image",
|
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"]
|
||||||
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: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
@@ -51,7 +38,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${publicSans.variable} antialiased`}
|
className={`${spaceGrotesk.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
Reference in New Issue
Block a user