/* @refresh reload */ import { For, render } from "solid-js/web"; import "./index.css"; import type { Component } from "solid-js"; import { Layout } from "./components/layout"; import Card from "./components/card"; import type { CardProps } from "./types/interfaces"; const cards = [ { title: "API-er", children:

Sjekk ut mine API-er

, to: "https://api.martials.no/", }, { title: "Hjemmeside", children:

Sjekk ut mine andre prosjekter

, to: "https://h600878.github.io/", } ] satisfies CardProps[]; const HomePage: Component = () => { return (
{ card => { card.children } }
); }; render(() => , document.getElementById("root") as HTMLElement);