mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
initial skeleton for front
This commit is contained in:
BIN
traque-front/app/favicon.ico
Normal file
BIN
traque-front/app/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
17
traque-front/app/globals.css
Normal file
17
traque-front/app/globals.css
Normal file
@@ -0,0 +1,17 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
:root {
|
||||
--accent-color: #F27127;
|
||||
--background-color: #FFFFFF;
|
||||
--text-color: #333333;
|
||||
--base-dark-color: #13274A;
|
||||
--base-light-color: #2957A3;
|
||||
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--text-color-rgb);
|
||||
background: var(--background-color);
|
||||
}
|
||||
16
traque-front/app/layout.js
Normal file
16
traque-front/app/layout.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata = {
|
||||
title: "La Traque",
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
10
traque-front/app/page.js
Normal file
10
traque-front/app/page.js
Normal file
@@ -0,0 +1,10 @@
|
||||
export default function Home() {
|
||||
return (
|
||||
<div>
|
||||
<h1>La Traque</h1>
|
||||
<p>
|
||||
La Traque est un jeu de rôle en ligne massivement multijoueur (MMORPG) qui se déroule dans un univers médiéval fantastique.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user