Index: src/app/layout.tsx
===================================================================
--- src/app/layout.tsx	(revision 65f7b64a4488d0ab35cde03686d8f46e2980d28e)
+++ src/app/layout.tsx	(revision 875f7d6526d10ea486ceae45de8b59a66f11aaff)
@@ -2,4 +2,9 @@
 import { Geist, Geist_Mono } from "next/font/google";
 import "./globals.css";
+import '@fortawesome/fontawesome-svg-core/styles.css';
+import { config } from '@fortawesome/fontawesome-svg-core';
+
+// Prevent FontAwesome from adding CSS automatically
+config.autoAddCss = false;
 
 const geistSans = Geist({
@@ -14,6 +19,6 @@
 
 export const metadata: Metadata = {
-  title: "Create Next App",
-  description: "Generated by create next app",
+  title: "IKnow - UKIM",
+  description: "University Managment System used to provide students informations and manage their progress.",
 };
 
@@ -28,5 +33,5 @@
         className={`${geistSans.variable} ${geistMono.variable} antialiased`}
       >
-        {children}
+        <div className="mx-auto max-w-6xl px-4">{children}</div>
       </body>
     </html>
