Update src/app/layout.tsx

This commit is contained in:
2026-03-03 19:18:29 +00:00
parent f145cfbe21
commit 4f2137d411

View File

@@ -1,8 +1,14 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Native Line - Build Apps Just Talk", description: "Turn your ideas into production-ready iOS, iPad, and Mac apps instantly. Pure native Swift, beautifully designed, completely yours."
};
title: "Native Line - Build Native Apps Just Talk", description: "Turn your ideas into production-ready iOS, iPad, and Mac apps instantly. Pure native Swift, beautifully designed, completely yours."};
export default function RootLayout({
children,
@@ -11,7 +17,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>
<body className={inter.variable}>
{children}
<script