Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -122,7 +122,7 @@ export default function LandingPage() {
|
||||
tag="Competitive Advantage"
|
||||
tagIcon={Award}
|
||||
tagAnimation="blur-reveal"
|
||||
title="Why Choose Tap2Share? Modern NFC technology, fast contact sharing, eco-friendly alternative, no monthly fees, one-time purchase. Create a professional impression every time you meet someone new."
|
||||
title="Why Choose Tap2Share? Modern NFC technology enables fast contact sharing. Eco-friendly alternative eliminates paper waste. No monthly fees—just a one-time purchase. Create a professional impression every time you meet someone new."
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Order Digital Business Card", href: "#cta" },
|
||||
|
||||
Reference in New Issue
Block a user