Added list of apis to card, changed link to only cover headline
This commit is contained in:
parent
ac8d7936da
commit
91efb8e14e
@ -1,21 +1,21 @@
|
|||||||
/* @refresh reload */
|
/* @refresh reload */
|
||||||
import { type Component } from "solid-js";
|
import { type Component } from "solid-js";
|
||||||
import type { CardProps } from "../types/interfaces";
|
import type { CardProps } from "../types/interfaces";
|
||||||
import { H3 } from "./text";
|
|
||||||
import { Link } from "./link";
|
import { Link } from "./link";
|
||||||
|
|
||||||
const Card: Component<CardProps> = ({ children, className, title, to, newTab = false }) => {
|
const Card: Component<CardProps> = ({ children, className, title, to, newTab = false }) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Link className={ "text-white" } to={ to } newTab={ newTab }>
|
<div
|
||||||
<div
|
class={ `relative bg-gradient-to-r from-cyan-600 to-cyan-500 h-32 w-72 rounded-2xl ${ className }` }>
|
||||||
class={ `relative bg-gradient-to-r from-cyan-600 to-cyan-500 h-32 w-64 rounded-2xl ${ className }` }>
|
<div class="relative p-5">
|
||||||
<div class="relative p-5">
|
<Link className={ "text-white" } to={ to } newTab={ newTab }>
|
||||||
<H3 className={ "text-center" }>{ title }</H3>
|
<h3 class={ "text-center w-fit mx-auto before:content-['↗']" }>{ title }</h3>
|
||||||
{ children }
|
</Link>
|
||||||
</div>
|
{ children }
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</div>
|
||||||
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -2,12 +2,11 @@
|
|||||||
|
|
||||||
import { type Component } from "solid-js";
|
import { type Component } from "solid-js";
|
||||||
import type { TitleProps } from "../types/interfaces";
|
import type { TitleProps } from "../types/interfaces";
|
||||||
import { H1 } from "./text";
|
|
||||||
|
|
||||||
const Header: Component<TitleProps> = ({ className, title }) => {
|
const Header: Component<TitleProps> = ({ className, title }) => {
|
||||||
return (
|
return (
|
||||||
<header class={ className }>
|
<header class={ className }>
|
||||||
<H1 className={ "text-center text-cyan-500" }>{ title }</H1>
|
<h1 class={ "text-center text-cyan-500" }>{ title }</h1>
|
||||||
<div class={"mx-auto w-fit"}>
|
<div class={"mx-auto w-fit"}>
|
||||||
<p>Av Martin Berg Alstad</p>
|
<p>Av Martin Berg Alstad</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
import { type Component } from "solid-js";
|
|
||||||
import type { ChildProps } from "../types/interfaces";
|
|
||||||
|
|
||||||
export const H1: Component<ChildProps> = ({ children, className }) => {
|
|
||||||
return <h1 class={ `text-4xl ${ className }` }>{ children }</h1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const H3: Component<ChildProps> = ({ children, className }) => {
|
|
||||||
return <h3 class={ `text-2xl ${ className }` }>{ children }</h3>;
|
|
||||||
};
|
|
@ -9,8 +9,28 @@
|
|||||||
@apply after:content-['DEBUG'] after:absolute;
|
@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;
|
@apply hover:underline text-cyan-500;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
@apply list-disc ml-4;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -6,12 +6,24 @@ import { type Component } from "solid-js";
|
|||||||
import Layout from "./components/layout";
|
import Layout from "./components/layout";
|
||||||
import Card from "./components/card";
|
import Card from "./components/card";
|
||||||
import type { CardProps } from "./types/interfaces";
|
import type { CardProps } from "./types/interfaces";
|
||||||
|
import { Link } from "./components/link";
|
||||||
|
|
||||||
|
const apiRoot = "https://api.martials.no";
|
||||||
|
|
||||||
const cards = [
|
const cards = [
|
||||||
{
|
{
|
||||||
title: "API-er",
|
title: "API-er",
|
||||||
children: <p>Sjekk ut mine API-er</p>,
|
children: <>
|
||||||
to: "https://api.martials.no/",
|
<p>Sjekk ut mine API-er</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<Link className={ "text-white" } to={ `${ apiRoot }/simplify_truths` }>
|
||||||
|
Forenkle sannhetsverdier
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</>,
|
||||||
|
to: apiRoot,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Hjemmeside",
|
title: "Hjemmeside",
|
||||||
@ -26,7 +38,7 @@ const HomePage: Component = () => {
|
|||||||
<div class={ "flex flex-wrap justify-center mt-10" }>
|
<div class={ "flex flex-wrap justify-center mt-10" }>
|
||||||
<For each={ cards }>
|
<For each={ cards }>
|
||||||
{ card =>
|
{ card =>
|
||||||
<Card title={ card.title } className={ "m-4 text-center" } to={ card.to }>{ card.children }</Card>
|
<Card title={ card.title } className={ "m-4" } to={ card.to }>{ card.children }</Card>
|
||||||
}
|
}
|
||||||
</For>
|
</For>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user