Changeset 6b8332f for src/app/layout.tsx
- Timestamp:
- 10/21/25 15:49:14 (11 months ago)
- Branches:
- master
- Children:
- 2d635ae
- Parents:
- 636f86c
- File:
-
- 1 edited
-
src/app/layout.tsx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/app/layout.tsx
r636f86c r6b8332f 2 2 import { Geist, Geist_Mono } from "next/font/google"; 3 3 import "./globals.css"; 4 import "@fortawesome/fontawesome-svg-core/styles.css";5 import { config } from "@fortawesome/fontawesome-svg-core";4 import '@fortawesome/fontawesome-svg-core/styles.css'; 5 import { config } from '@fortawesome/fontawesome-svg-core'; 6 6 import Header from "@/components/header"; 7 import Navbar from "@/components/navbar";8 7 9 8 // Prevent FontAwesome from adding CSS automatically … … 21 20 22 21 export const metadata: Metadata = { 23 title: "IKnow - UKIM", 24 description: 25 "University Managment System used to provide students informations and manage their progress.", 22 title: "IKnow - Student Portal", 23 description: "Student portal for Ss. Cyril and Methodius University", 26 24 }; 27 25 … … 33 31 return ( 34 32 <html lang="en"> 35 <body className={`${geistSans.variable} ${geistMono.variable} antialiased`}> 36 <div className="mx-auto max-w-6xl px-4"> 37 <Header /> 38 <Navbar /> 39 {children} 40 </div> 33 <body 34 className={`${geistSans.variable} ${geistMono.variable} antialiased`} 35 > 36 <div className="mx-auto max-w-6xl px-4">{children}</div> 41 37 </body> 42 38 </html>
Note:
See TracChangeset
for help on using the changeset viewer.
