diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dfc07e6..0b93851 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,13 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./globals.css"; import "./styles/variables.css"; import "./styles/base.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { - title: "אתר פלוס - בנייה מודרנית של אתרים לעסקים", description: "בנייה מודרנית של אתרים לעסקים שמביאים לקוחות. אנחנו בונים אתרים יפים, מהירים ו-SEO friendly." -}; + title: "אתר פלוס - בניית אתרים מקצועיים לעסקים", description: "בנייה מודרנית של אתרים לעסקים קטנים ובינוניים. אתרים מקצועיים שמביאים לקוחות."}; export default function RootLayout({ children, @@ -14,7 +16,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}