Changeset 875f7d6 for src/app/layout.tsx
- Timestamp:
- 09/24/25 23:51:18 (12 months ago)
- Branches:
- master
- Children:
- 636f86c
- Parents:
- 65f7b64
- File:
-
- 1 edited
-
src/app/layout.tsx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/app/layout.tsx
r65f7b64 r875f7d6 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'; 6 7 // Prevent FontAwesome from adding CSS automatically 8 config.autoAddCss = false; 4 9 5 10 const geistSans = Geist({ … … 14 19 15 20 export const metadata: Metadata = { 16 title: " Create Next App",17 description: " Generated by create next app",21 title: "IKnow - UKIM", 22 description: "University Managment System used to provide students informations and manage their progress.", 18 23 }; 19 24 … … 28 33 className={`${geistSans.variable} ${geistMono.variable} antialiased`} 29 34 > 30 {children}35 <div className="mx-auto max-w-6xl px-4">{children}</div> 31 36 </body> 32 37 </html>
Note:
See TracChangeset
for help on using the changeset viewer.
