- Timestamp:
- 09/25/25 16:30:46 (12 months ago)
- Branches:
- master
- Children:
- 6b8332f
- Parents:
- 875f7d6
- Location:
- src/app
- Files:
-
- 8 added
- 2 edited
-
applications/page.tsx (added)
-
documents/page.tsx (added)
-
exams/page.tsx (added)
-
layout.tsx (modified) (3 diffs)
-
login/layout.tsx (added)
-
login/page.tsx (added)
-
page.tsx (modified) (1 diff)
-
profile/page.tsx (added)
-
semesters/page.tsx (added)
-
subjects/page.tsx (added)
Legend:
- Unmodified
- Added
- Removed
-
src/app/layout.tsx
r875f7d6 r636f86c 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 import Header from "@/components/header"; 7 import Navbar from "@/components/navbar"; 6 8 7 9 // Prevent FontAwesome from adding CSS automatically … … 20 22 export const metadata: Metadata = { 21 23 title: "IKnow - UKIM", 22 description: "University Managment System used to provide students informations and manage their progress.", 24 description: 25 "University Managment System used to provide students informations and manage their progress.", 23 26 }; 24 27 … … 30 33 return ( 31 34 <html lang="en"> 32 <body 33 className={`${geistSans.variable} ${geistMono.variable} antialiased`} 34 > 35 <div className="mx-auto max-w-6xl px-4">{children}</div> 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> 36 41 </body> 37 42 </html> -
src/app/page.tsx
r875f7d6 r636f86c 1 1 import Image from "next/image"; 2 import Navbar from "@/components/navbar";3 import Header from "@/components/header";4 import Exams from "@/components/exams";5 2 6 3 export default function Home() { 7 4 return ( 8 5 <> 9 <Header></Header> 10 <Navbar></Navbar> 11 <Exams></Exams> 6 12 7 </> 13 8 );
Note:
See TracChangeset
for help on using the changeset viewer.
