Update src/app/layout.tsx
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
@@ -15,19 +14,19 @@ const inter = Inter({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FinanTech - Secure Investment Platform for Private Businesses", description: "Connect private businesses with smart investors on FinanTech, a secure platform for capital raising and investment opportunities. Modern fintech solutions for entrepreneurs.", keywords: "fintech, investment platform, capital raising, private business funding, investor network, secure platform", metadataBase: new URL("https://financtech.example.com"),
|
||||
title: "FinanTech - Premium Investment Platform", description: "Experience next-generation fintech investment intelligence. Connect with vetted opportunities, harness AI-powered analytics, and grow your portfolio with confidence.", keywords: "fintech, investment platform, AI investment, capital raising, private business funding, investor network, secure platform, investment intelligence", metadataBase: new URL("https://financtech.example.com"),
|
||||
alternates: {
|
||||
canonical: "https://financtech.example.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "FinanTech - Capital Meets Opportunity", description: "A secure investment platform connecting private businesses with smart investors.", type: "website", siteName: "FinanTech", url: "https://financtech.example.com", images: [
|
||||
title: "FinanTech - Premium Investment Intelligence", description: "Next-generation fintech platform with AI-powered investment analytics and secure capital connections.", type: "website", siteName: "FinanTech", url: "https://financtech.example.com", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQJGP8gArLWRfHJt1tHsEBVGMy/abstract-3d-gradient-sphere-with-neon-pu-1772518823262-e21370ad.png", alt: "FinanTech Investment Platform"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "FinanTech - Capital Meets Opportunity", description: "Secure investment platform connecting businesses with smart investors.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQJGP8gArLWRfHJt1tHsEBVGMy/abstract-3d-gradient-sphere-with-neon-pu-1772518823262-e21370ad.png"]
|
||||
card: "summary_large_image", title: "FinanTech - Premium Investment Intelligence", description: "AI-powered fintech platform for smart investing.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQJGP8gArLWRfHJt1tHsEBVGMy/abstract-3d-gradient-sphere-with-neon-pu-1772518823262-e21370ad.png"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
@@ -44,7 +43,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${poppins.variable} ${inter.variable} antialiased`}
|
||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user