From 2707b1c9c4cdd0da49de7d29426c716be77c17b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Aleksander=20R=C3=A5kil=20Johansen?= Date: Tue, 27 Jun 2023 13:35:30 +0200 Subject: [PATCH] Basic aksel boilerplate frontend app --- frontend/sprik-frontend/src/app/globals.css | 6 - frontend/sprik-frontend/src/app/page.tsx | 120 ++------------------ 2 files changed, 12 insertions(+), 114 deletions(-) diff --git a/frontend/sprik-frontend/src/app/globals.css b/frontend/sprik-frontend/src/app/globals.css index fd81e88..0e9178f 100644 --- a/frontend/sprik-frontend/src/app/globals.css +++ b/frontend/sprik-frontend/src/app/globals.css @@ -2,12 +2,6 @@ @tailwind components; @tailwind utilities; -:root { - --foreground-rgb: 0, 0, 0; - --background-start-rgb: 214, 219, 220; - --background-end-rgb: 255, 255, 255; -} - @media (prefers-color-scheme: dark) { :root { --foreground-rgb: 255, 255, 255; diff --git a/frontend/sprik-frontend/src/app/page.tsx b/frontend/sprik-frontend/src/app/page.tsx index 7e80296..9f3b0bb 100644 --- a/frontend/sprik-frontend/src/app/page.tsx +++ b/frontend/sprik-frontend/src/app/page.tsx @@ -1,113 +1,17 @@ -import Image from 'next/image' +"use client" + +import React from 'react' + +import "@navikt/ds-css"; +import { Button } from "@navikt/ds-react"; export default function Home() { return ( -
-
-

- Get started by editing  - src/app/page.tsx -

-
- - By{' '} - Vercel Logo - -
-
- -
- Next.js Logo -
- -
- -

- Docs{' '} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{' '} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{' '} - - -> - -

-

- Explore the Next.js 13 playground. -

-
- - -

- Deploy{' '} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
+
+

+ Sprik + +

) -} +} \ No newline at end of file