Changeset 50f2fb4 for src/app/layout.tsx
- Timestamp:
- 01/30/26 01:40:27 (8 months ago)
- Branches:
- master
- Children:
- ba52069
- Parents:
- 298f9b3
- File:
-
- 1 edited
-
src/app/layout.tsx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/app/layout.tsx
r298f9b3 r50f2fb4 1 import type { Metadata } from "next";1 "use client"; 2 2 import { Geist, Geist_Mono } from "next/font/google"; 3 3 import "./globals.css"; 4 4 import '@fortawesome/fontawesome-svg-core/styles.css'; 5 5 import { config } from '@fortawesome/fontawesome-svg-core'; 6 import { I18nextProvider } from 'react-i18next'; 7 import i18n from '../i18n'; 6 8 7 // Prevent FontAwesome from adding CSS automatically8 9 config.autoAddCss = false; 9 10 … … 18 19 }); 19 20 20 export const metadata: Metadata = {21 title: "IKnow - Student Portal",22 description: "Student portal for Ss. Cyril and Methodius University",23 };24 25 21 export default function RootLayout({ 26 22 children, … … 30 26 return ( 31 27 <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>28 <body className={`${geistSans.variable} ${geistMono.variable} antialiased`}> 29 <I18nextProvider i18n={i18n}> 30 <div className="mx-auto max-w-6xl px-4">{children}</div> 31 </I18nextProvider> 36 32 </body> 37 33 </html>
Note:
See TracChangeset
for help on using the changeset viewer.
