File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1717}
1818
1919body {
20+ font-family : 'Inter' , sans-serif;
2021 color : rgb (var (--foreground-rgb ));
2122 background : linear-gradient (
2223 to bottom,
3637 width : 50px ; /* Set width of the image */
3738 height : 50px ; /* Set height of the image */
3839 margin-right : 10px ; /* Add some spacing between image and text */
39- }
40+ }
Original file line number Diff line number Diff line change 1- import { Inter } from "next/font/google " ;
1+ import Head from "next/head " ;
22import "./globals.css" ;
33
4- const inter = Inter ( { subsets : [ "latin" ] } ) ;
5-
64export const metadata = {
75 title : "IntelliGest GUI" ,
86 description : "Developed by IntelliGest Team" ,
@@ -11,7 +9,10 @@ export const metadata = {
119export default function RootLayout ( { children } ) {
1210 return (
1311 < html lang = "en" >
14- < body className = { inter . className } > { children } </ body >
12+ < Head >
13+ < link href = "https://fonts.googleapis.com/css2?family=Inter:wght@400;600& display = swap " rel = "stylesheet" />
14+ </ Head >
15+ < body > { children } </ body >
1516 </ html >
1617 ) ;
17- }
18+ }
You can’t perform that action at this time.
0 commit comments