Skip to content

Commit

Permalink
fix2
Browse files Browse the repository at this point in the history
  • Loading branch information
Neon-20 committed Nov 15, 2023
1 parent 8dc245a commit 8c8d18f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
import React from "react";
import Script from "next/script";
import "../styles/globals.css";

import type {Metadata} from "next";
import { Inter } from "next/font/google";
import Footer from "../components/Footer";
import Navbar from "../components/Navbar";
import type { Metadata } from "next";

// If loading a variable font, you don't need to specify the font weight
const inter = Inter({
subsets: ["latin"],
display: "swap",
});

export const metadata:Metadata = {
title:"TrustAuthX",
description: 'TrustAuthX is a Low Code Authentication as a Service Platform for developers/businesses worldwide.',
}

export default function RootLayout({
children,
}: {
Expand All @@ -21,8 +25,8 @@ export default function RootLayout({
return (
<html lang="en" className={inter.className}>
<head>
<meta name="title" content="TrustAuthX"/>
<meta name="description" content="TrustAuthX is a Low Code Authentication as a Service Platform for developers/businesses worldwide."/>
<title>{`${metadata.title}`}</title>
<meta name="description" content={`${metadata.description}`} />.
<link rel="icon" href="./favicon.ico" />
<Script
src="https://www.googletagmanager.com/gtag/js?id=G-7NXTY5KCKL"
Expand Down

0 comments on commit 8c8d18f

Please sign in to comment.