Update src/app/layout.tsx
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dentlife - Stomatološka ordinacija u Sarajevu", description: "Pouzdana i moderna stomatološka ordinacija u Sarajevu sa iskusnim doktorima, modernom opremom i individualnim pristupom."
|
||||
};
|
||||
title: "Dentlife - Stomatološka ordinacija", description: "Moderna stomatološka ordinacija u Sarajevu sa iskusnim doktorima i najnovijom tehnologijom."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -12,10 +14,8 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="bs">
|
||||
<body>
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1385,4 +1385,4 @@ export default function RootLayout({
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user