File tree 3 files changed +25
-6
lines changed
3 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 1
- import type { Metadata } from "next" ;
2
- import localFont from "next/font/local" ;
3
1
import "./css/openfusion.css" ;
4
2
3
+ // import localFont from "next/font/local";
5
4
// const geistSans = localFont({
6
5
// src: "./fonts/GeistVF.woff",
7
6
// variable: "--font-geist-sans",
Original file line number Diff line number Diff line change
1
+ import "./css/bootstrap.min.css" ;
1
2
import "./css/openfusion.css" ;
2
3
4
+ import ofLogo from "./img/of-3.png" ;
5
+
6
+ import Image from "next/image" ;
7
+ import Container from "react-bootstrap/Container" ;
8
+ import Row from "react-bootstrap/Row" ;
9
+ import Col from "react-bootstrap/Col" ;
10
+
3
11
export default function Home ( ) {
4
12
return (
5
- < div >
6
- < p id = "of-intro-text" > hehe < code > dong</ code > </ p >
7
- </ div >
13
+ < Container >
14
+ < Row className = "text-center mt-3" >
15
+ < Col >
16
+ < Image src = { ofLogo } alt = "OpenFusion logo" width = { 256 } />
17
+ < p id = "of-intro-text" >
18
+ Welcome to OpenFusion.
19
+ < br />
20
+ Select a server from the list below to get started.
21
+ </ p >
22
+ </ Col >
23
+ </ Row >
24
+ </ Container >
8
25
) ;
9
26
}
Original file line number Diff line number Diff line change 1
1
/** @type {import('next').NextConfig } */
2
2
const nextConfig = {
3
- output : 'export' ,
3
+ output : "export" ,
4
+ images : {
5
+ unoptimized : true ,
6
+ } ,
4
7
} ;
5
8
6
9
export default nextConfig ;
You can’t perform that action at this time.
0 commit comments