Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Metadata } from 'next';

export const dynamic = 'force-static'; // no necessary, just for demonstration
export const dynamic = 'force-static'; // not necessary, just for demonstration

export const metadata: Metadata = {
title: 'About Us',
description: 'About NextSpace',
};

export default function Blog() {
export default function About() {
return (
<div>
<h1>About us</h1>
Expand Down
8 changes: 6 additions & 2 deletions app/globals.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@

:root {
--link-color: #1d4ed8;
--dark-color: #00332a;
--light-color: #e3e3e3;
--foreground: var(var(--dark-color));
--background: var(var(--light-color))
}

html,
body {
max-width: 100vw;
overflow-x: hidden;
background-color: #e3e3e3;
background-color: var(--background);
/* font-family: verdana, arial, sans-serif, helvetica; */
}

Expand All @@ -18,7 +22,7 @@ body {
}

main {
background-color: white;
background-color: var(--background);
padding: 1rem;
min-height: 300px;
}
Expand Down