From d08fb62c33ef64fb6bb85b97c97cc86261295a77 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 01:16:44 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 11 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fcc23af..7c7f02b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "M & J Aquatics - Premium Saltwater Fish Sales", description: "Shop high-quality saltwater fish from M & J Aquatics. Expert-curated marine species with guaranteed health and secure shipping worldwide.", keywords: "saltwater fish, marine aquarium, tropical fish for sale, aquarium species, reef fish", metadataBase: new URL("https://mjaquatics.com"), - alternates: { - canonical: "https://mjaquatics.com"}, - openGraph: { - title: "M & J Aquatics - Premium Saltwater Fish", description: "Discover premium saltwater fish for your aquarium. Expert care, healthy specimens, worldwide shipping.", url: "https://mjaquatics.com", siteName: "M & J Aquatics", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/tropical-fishes-coral-reef-area_1398-1852.jpg", alt: "Premium saltwater fish collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "M & J Aquatics - Premium Saltwater Fish", description: "Expert-curated marine fish species with guaranteed health and worldwide shipping.", images: ["http://img.b2bpic.net/free-photo/tropical-fishes-coral-reef-area_1398-1852.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "M & J Aquatics - Premium Saltwater Fish", description: "Discover premium quality saltwater fish for your aquarium. Expert-curated specimens with live arrival guarantee."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -