diff --git a/src/components/card.tsx b/src/components/card.tsx index e9fd744..672ca99 100644 --- a/src/components/card.tsx +++ b/src/components/card.tsx @@ -1,21 +1,21 @@ /* @refresh reload */ import { type Component } from "solid-js"; import type { CardProps } from "../types/interfaces"; -import { H3 } from "./text"; import { Link } from "./link"; const Card: Component = ({ children, className, title, to, newTab = false }) => { return ( <> - -
-
-

{ title }

- { children } -
+
+
+ +

{ title }

+ + { children }
- +
+ ); }; diff --git a/src/components/header.tsx b/src/components/header.tsx index fdf3a92..4f60325 100644 --- a/src/components/header.tsx +++ b/src/components/header.tsx @@ -2,12 +2,11 @@ import { type Component } from "solid-js"; import type { TitleProps } from "../types/interfaces"; -import { H1 } from "./text"; const Header: Component = ({ className, title }) => { return (
-

{ title }

+

{ title }

Av Martin Berg Alstad

diff --git a/src/components/text.tsx b/src/components/text.tsx deleted file mode 100644 index 828571a..0000000 --- a/src/components/text.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { type Component } from "solid-js"; -import type { ChildProps } from "../types/interfaces"; - -export const H1: Component = ({ children, className }) => { - return

{ children }

; -}; - -export const H3: Component = ({ children, className }) => { - return

{ children }

; -}; diff --git a/src/index.css b/src/index.css index 82e4497..dc91577 100644 --- a/src/index.css +++ b/src/index.css @@ -9,8 +9,28 @@ @apply after:content-['DEBUG'] after:absolute; } - .link { + h1 { + @apply text-4xl; + } + + h2 { + @apply text-3xl; + } + + h3 { + @apply text-2xl; + } + + h4 { + @apply text-xl; + } + + a { @apply hover:underline text-cyan-500; } + li { + @apply list-disc ml-4; + } + } diff --git a/src/index.tsx b/src/index.tsx index a33c722..87cadac 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6,12 +6,24 @@ import { type Component } from "solid-js"; import Layout from "./components/layout"; import Card from "./components/card"; import type { CardProps } from "./types/interfaces"; +import { Link } from "./components/link"; + +const apiRoot = "https://api.martials.no"; const cards = [ { title: "API-er", - children:

Sjekk ut mine API-er

, - to: "https://api.martials.no/", + children: <> +

Sjekk ut mine API-er

+
    +
  • + + Forenkle sannhetsverdier + +
  • +
+ , + to: apiRoot, }, { title: "Hjemmeside", @@ -26,7 +38,7 @@ const HomePage: Component = () => {
{ card => - { card.children } + { card.children } }