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