Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 33ed7c7fa9 | |||
| f6784ac986 | |||
| b7d9f29f23 | |||
| cc7207830d | |||
| 71262def34 | |||
| 1e8948b6fb | |||
| 6b612dcec6 | |||
| 0441d7a81a |
@@ -1,9 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import "./styles/globals.css";
|
import { Inter } from "next/font/google";
|
||||||
|
import "./globals.css";
|
||||||
|
|
||||||
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Mockcraft - Professional App Mockups in Minutes", description: "Upload your screenshots, customize stunning mockups and animated promos—no design skills required. Launch your app marketing today."
|
title: "Mockcraft - Professional App Mockups in Minutes", description: "Upload your screenshots, customize stunning mockups and animated promos—no design skills required. Launch your app marketing today."};
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -12,7 +14,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body>{children}
|
<body className={inter.className}>{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
Reference in New Issue
Block a user