Changeset 6b8332f for src/app/layout.tsx


Ignore:
Timestamp:
10/21/25 15:49:14 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
2d635ae
Parents:
636f86c
Message:

feat: Add student exams, profile, semesters, and subjects pages with respective components and data integration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/app/layout.tsx

    r636f86c r6b8332f  
    22import { Geist, Geist_Mono } from "next/font/google";
    33import "./globals.css";
    4 import "@fortawesome/fontawesome-svg-core/styles.css";
    5 import { config } from "@fortawesome/fontawesome-svg-core";
     4import '@fortawesome/fontawesome-svg-core/styles.css';
     5import { config } from '@fortawesome/fontawesome-svg-core';
    66import Header from "@/components/header";
    7 import Navbar from "@/components/navbar";
    87
    98// Prevent FontAwesome from adding CSS automatically
     
    2120
    2221export 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",
    2624};
    2725
     
    3331  return (
    3432    <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>
    4137      </body>
    4238    </html>
Note: See TracChangeset for help on using the changeset viewer.