Changeset 875f7d6 for src/app/layout.tsx


Ignore:
Timestamp:
09/24/25 23:51:18 (12 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
636f86c
Parents:
65f7b64
Message:

Initial commit with Next.js project setup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/app/layout.tsx

    r65f7b64 r875f7d6  
    22import { Geist, Geist_Mono } from "next/font/google";
    33import "./globals.css";
     4import '@fortawesome/fontawesome-svg-core/styles.css';
     5import { config } from '@fortawesome/fontawesome-svg-core';
     6
     7// Prevent FontAwesome from adding CSS automatically
     8config.autoAddCss = false;
    49
    510const geistSans = Geist({
     
    1419
    1520export 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.",
    1823};
    1924
     
    2833        className={`${geistSans.variable} ${geistMono.variable} antialiased`}
    2934      >
    30         {children}
     35        <div className="mx-auto max-w-6xl px-4">{children}</div>
    3136      </body>
    3237    </html>
Note: See TracChangeset for help on using the changeset viewer.