Style upgrade, added minor nav bar, set up some basic routes and began work on components and components system.
This commit is contained in:
parent
a0be72856c
commit
5eaf5f319f
14 changed files with 204 additions and 117 deletions
0
app/Admin/Login/page.tsx
Normal file
0
app/Admin/Login/page.tsx
Normal file
0
app/Admin/Overview/page.tsx
Normal file
0
app/Admin/Overview/page.tsx
Normal file
0
app/Admin/route.tsx
Normal file
0
app/Admin/route.tsx
Normal file
0
app/Hannah/Portfolio/CV/page.tsx
Normal file
0
app/Hannah/Portfolio/CV/page.tsx
Normal file
0
app/Hannah/Portfolio/Projects/page.tsx
Normal file
0
app/Hannah/Portfolio/Projects/page.tsx
Normal file
0
app/Hannah/page.tsx
Normal file
0
app/Hannah/page.tsx
Normal file
|
|
@ -1,20 +1,12 @@
|
|||
import type { Metadata } from "next";
|
||||
//import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import React from "react";
|
||||
|
||||
// const geistSans = Geist({
|
||||
// variable: "--font-geist-sans",
|
||||
// subsets: ["latin"],
|
||||
// });
|
||||
|
||||
// const geistMono = Geist_Mono({
|
||||
// variable: "--font-geist-mono",
|
||||
// subsets: ["latin"],
|
||||
// });
|
||||
import Header from "@/components/layout/Header";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
title: "Dagemark",
|
||||
description: "Home of Innovation",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
|
|
@ -25,6 +17,7 @@ export default function RootLayout({
|
|||
return (
|
||||
<html lang="en">
|
||||
<body className={`antialiased`}> {/* className=${geistSans.variable} ${geistMono.variable} */}
|
||||
<Header/>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
11
app/page.tsx
11
app/page.tsx
|
|
@ -1,9 +1,9 @@
|
|||
import Image from "next/image";
|
||||
import Image from "next/image";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
||||
<main className="flex min-h-screen w-full max-w-3xl flex-col items-center py-32 px-16 bg-white dark:bg-black sm:items-start">
|
||||
<div className="flex min-h-screen items-center justify-center bg-zinc-200 font-sans dark:bg-slate-800">
|
||||
<main className="flex h-full w-full max-w-3xl rounded-4xl flex-col items-center py-32 px-16 bg-gray-400 dark:bg-slate-900 sm:items-start">
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/next.svg"
|
||||
|
|
@ -16,9 +16,8 @@ export default function Home() {
|
|||
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
|
||||
Welcome to the Dagemark Server
|
||||
</h1>
|
||||
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
|
||||
CURRENTLY UNDER CONSTRUCTION!
|
||||
<p>Kindly wait for real build :D</p>
|
||||
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400 italic">
|
||||
Design In Progress, current layout and theme may change, have a good day :D
|
||||
</p>
|
||||
</div>
|
||||
</main>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue