1
0
Fork 0

Added projects, content
Some checks failed
hugo-deploy / deploy (push) Failing after 35s

This commit is contained in:
Mia Rose Winter 2024-06-03 00:17:46 +02:00
parent 36ea1b56d0
commit 34d3a6b277
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E
5 changed files with 95 additions and 11 deletions

View file

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View file

@ -0,0 +1,18 @@
---
interface Props {
type?: string,
link: string
}
const { type = "primary", link } = Astro.props;
---
<a class:list={[
"flex gap-2 items-center justify-center",
"p-2 w-36 font-bold rounded hover:bg-opacity-75 active:bg-opacity-50",
"transition-color sease-linear duration-300",
`bg-${type}`, `text-${type}-content`
]}
href={link} target="_blank">
<slot />
</a>

12
src/components/Card.astro Normal file
View file

@ -0,0 +1,12 @@
---
interface Props {
title: string;
}
const { title } = Astro.props;
---
<article class="flex flex-col bg-base-200 p-8 rounded-sm border border-neutral shadow-neutral shadow-[6px_6px_0_0] min-h-72 break-inside-avoid-column">
<h3 class="text-2xl font-medium mb-4">{title}</h3>
<slot />
</article>

View file

@ -2,7 +2,7 @@
import '../styles/style.css'; import '../styles/style.css';
import ThemeToggle from "../components/ThemeToggle.astro"; import ThemeToggle from "../components/ThemeToggle.astro";
import {Image} from "astro:assets" import {Image} from "astro:assets"
import logo from "./logo.svg" import logo from "../assets/logo.svg"
interface Props { interface Props {
title: string; title: string;
@ -48,7 +48,8 @@ const { title } = Astro.props;
</head> </head>
<body> <body>
<header class="p-4 md:px-12 flex items-center justify-center"> <header class="p-4 md:px-12 flex items-center justify-center">
<Image class="w-1/2 md:w-auto h-auto md:h-56" src={logo} alt="Winter Software" /> <Image class="w-1/2 md:w-auto h-auto md:h-56" src={logo} alt="Winter Software"
loading="eager" />
<ThemeToggle /> <ThemeToggle />
</header> </header>
<slot /> <slot />

View file

@ -1,19 +1,72 @@
--- ---
import Layout from '../layouts/Layout.astro'; import Layout from '../layouts/Layout.astro';
import Card from "../components/Card.astro";
import ButtonLink from "../components/Button.astro";
--- ---
<Layout title="Winter Software"> <Layout title="Winter Software">
<main class="container mx-auto p-4 md:px-12"> <main class="container mx-auto p-4 md:px-12">
<h1 class="mb-2 text-3xl">Welcome to <span class="text-gradient">Astro</span></h1> <p class="bg-primary text-primary-content p-8 text-lg rounded-sm font-bold text-center">
Still under Construction, but have some projects.
</p>
<div class="mb-2 p-8 bg-primary text-primary-content rounded-sm"> <h1 class="my-3 lg:text-5xl text-3xl font-medium">Winter Software</h1>
<p>Test primary</p> <p class="mb-8">Some text would go here</p>
<h2 class="text-2xl lg:text-4xl font-medium mb-2">Projects</h2>
<div class="columns-md gap-8 space-y-4 mb-8">
<Card title="Wave">
<p class="mb-3">
The Collaborative Open Source Blogging Engine
</p>
<div class="flex flex-wrap gap-2">
<ButtonLink link="https://github.com/miawinter98/Wave">
<svg class="w-5 h-5" viewBox="0 0 98 96" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="currentColor"></path>
</svg>
GitHub
</ButtonLink>
<ButtonLink link="https://git.winter-software.com/winter-software/Wave" type="secondary">
<svg class="w-5 h-5" viewBox="0 0 212 212" xmlns="http://www.w3.org/2000/svg">
<metadata
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:RDF>
<cc:Work rdf:about="https://codeberg.org/forgejo/meta/src/branch/readme/branding#logo">
<dc:title>Forgejo logo</dc:title>
<cc:creator rdf:resource="https://caesarschinas.com/"><cc:attributionName>Caesar Schinas</cc:attributionName></cc:creator>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
</rdf:RDF>
</metadata>
<g transform="translate(6,6)">
<path d="M58 168 v-98 a50 50 0 0 1 50-50 h20" stroke-width="25" stroke="#ff6600" fill="none" />
<path d="M58 168 v-30 a50 50 0 0 1 50-50 h20" stroke-width="25" stroke="#d40000" fill="none" />
<circle cx="142" cy="20" r="18" stroke-width="15" stroke="#ff6600" fill="none" />
<circle cx="142" cy="88" r="18" stroke-width="15" stroke="#d40000" fill="none" />
<circle cx="58" cy="180" r="18" stroke-width="15" stroke="#d40000" fill="none" />
</g>
</svg>
Forgejo
</ButtonLink>
</div> </div>
<div class="mb-2 p-8 bg-secondary text-secondary-content rounded-sm"> </Card>
<p>Test secondary</p> <Card title="Wave Alpha">
</div> <p class="mb-3">
<div class="mb-2 p-8 bg-neutral text-neutral-content rounded-sm"> A blog running Wave, maintained by Mia Rose Winter, with many articles about many topics from many people.
<p>Test neutral</p> </p>
<ButtonLink link="https://blog.winter-software.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="w-5 h-5">
<path fill-rule="evenodd" d="M15.75 2.25H21a.75.75 0 0 1 .75.75v5.25a.75.75 0 0 1-1.5 0V4.81L8.03 17.03a.75.75 0 0 1-1.06-1.06L19.19 3.75h-3.44a.75.75 0 0 1 0-1.5Zm-10.5 4.5a1.5 1.5 0 0 0-1.5 1.5v10.5a1.5 1.5 0 0 0 1.5 1.5h10.5a1.5 1.5 0 0 0 1.5-1.5V10.5a.75.75 0 0 1 1.5 0v8.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V8.25a3 3 0 0 1 3-3h8.25a.75.75 0 0 1 0 1.5H5.25Z" clip-rule="evenodd" />
</svg>
Go to Site
</ButtonLink>
</Card>
<Card title="Asilifelis">
<p class="flex-1">coming soon*</p>
<p class="text-end"><small>*if soon means in like the next 5 years</small></p>
</Card>
</div> </div>
</main> </main>
</Layout> </Layout>