From 2e0bb2d64941c102e1624c724232f7b2567299d5 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:34:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++------------------------------------- 1 file changed, 6 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e148629..504cc2d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Tap2Share - Modern NFC Digital Business Cards", description: "Revolutionize networking with Tap2Share NFC business cards. Share contact details instantly. Order yours today from €8.99 - eco-friendly, no monthly fees, one-time purchase.", keywords: "NFC business cards, digital business card, tap to share, contactless card, networking technology", openGraph: { - title: "Tap2Share - Modern NFC Digital Business Cards", description: "Revolutionize networking with Tap2Share NFC business cards. Share contact details instantly.", siteName: "Tap2Share", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-vaccination-passport_23-2149340935.jpg", alt: "Tap2Share NFC Digital Business Card"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Tap2Share - Modern NFC Digital Business Cards", description: "Revolutionize networking with NFC technology. Share instantly. Order now €8.99.", images: ["http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-vaccination-passport_23-2149340935.jpg"], - }, -}; + title: "Tap2Share - Digital NFC Business Cards", description: "Share your contact details with just one tap using Tap2Share digital NFC business cards."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}