mirror of
https://git.solarpunk.moe/Fries/fries-website.git
synced 2024-11-23 14:32:20 +00:00
Compare commits
No commits in common. "1f878d5874ce8259f14758f6749fba5890ac114f" and "3f866e5a77432865d65442e67a8bd25b08c04b9c" have entirely different histories.
1f878d5874
...
3f866e5a77
19 changed files with 2290 additions and 3452 deletions
9
.vscode/settings.json
vendored
9
.vscode/settings.json
vendored
|
@ -1,12 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"eslint.packageManager": "pnpm",
|
||||||
"editor.insertSpaces": false,
|
"editor.insertSpaces": false,
|
||||||
"editor.detectIndentation": false,
|
"editor.detectIndentation": false,
|
||||||
"json.schemas": [
|
|
||||||
{
|
|
||||||
"fileMatch": [
|
|
||||||
"/src/content/friends/*.json"
|
|
||||||
],
|
|
||||||
"url": "/friends-schema.json"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
||||||
"type": "object",
|
|
||||||
"required": [
|
|
||||||
"name",
|
|
||||||
"website",
|
|
||||||
"description"
|
|
||||||
],
|
|
||||||
"properties": {
|
|
||||||
"name": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"website": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"description": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"website_button": {
|
|
||||||
"type": "object",
|
|
||||||
"required": [
|
|
||||||
"name",
|
|
||||||
"alt_text"
|
|
||||||
],
|
|
||||||
"properties": {
|
|
||||||
"name": {
|
|
||||||
"type": "string",
|
|
||||||
"minLength": 1
|
|
||||||
},
|
|
||||||
"alt_text": {
|
|
||||||
"type": "string",
|
|
||||||
"minLength": 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -10,13 +10,10 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fontsource/atkinson-hyperlegible": "^5.0.20",
|
"@fontsource/atkinson-hyperlegible": "^4.5.11",
|
||||||
"astro": "^4.11.3"
|
"astro": "^2.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/check": "^0.7.0",
|
"prettier": "3.0"
|
||||||
"prettier": "~3.3.2",
|
|
||||||
"sharp": "^0.33.4",
|
|
||||||
"typescript": "^5.5.2"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
5517
pnpm-lock.yaml
5517
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -1,30 +1,3 @@
|
||||||
---
|
|
||||||
const date = new Date();
|
|
||||||
|
|
||||||
const dateString = date.toLocaleString([],
|
|
||||||
{
|
|
||||||
timeZone: 'America/Los_Angeles',
|
|
||||||
day: '2-digit',
|
|
||||||
month: '2-digit',
|
|
||||||
year: 'numeric',
|
|
||||||
hour: 'numeric',
|
|
||||||
minute: '2-digit',
|
|
||||||
second: '2-digit',
|
|
||||||
hour12: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
const longTimezone = date.toLocaleDateString([], {
|
|
||||||
day: '2-digit',
|
|
||||||
timeZoneName: 'long',
|
|
||||||
}).substring(4)
|
|
||||||
|
|
||||||
const shortTimezone = date.toLocaleDateString([], {
|
|
||||||
day: '2-digit',
|
|
||||||
timeZoneName: 'short',
|
|
||||||
}).substring(4)
|
|
||||||
---
|
|
||||||
|
|
||||||
<footer aria-label="my websites footer">
|
<footer aria-label="my websites footer">
|
||||||
<p><a href="https://git.solarpunk.moe/fries/fries-website">Source Code</a></p>
|
<a href="https://git.solarpunk.moe/fries/fries-website">Source Code</a>
|
||||||
<p>Built on {dateString}, <span title={longTimezone} class="tooltip">{shortTimezone}</span>.</p>
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
---
|
|
||||||
import type { friends } from '../schema/friends_schema';
|
|
||||||
import WebsiteButton from './WebsiteButton.astro';
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
friend: friends
|
|
||||||
};
|
|
||||||
|
|
||||||
const { friend } = Astro.props;
|
|
||||||
---
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h2><a href={friend.website}>{friend.name}</a></h2>
|
|
||||||
<p>{friend.description}</p>
|
|
||||||
{friend.website_button &&
|
|
||||||
<WebsiteButton
|
|
||||||
name={friend.website_button.name}
|
|
||||||
alt_text={friend.website_button.alt_text}
|
|
||||||
website={friend.website} />}
|
|
||||||
</section>
|
|
|
@ -1,21 +0,0 @@
|
||||||
---
|
|
||||||
import { Image } from 'astro:assets';
|
|
||||||
|
|
||||||
import allissaImage from "../website_buttons/itzzennet.png";
|
|
||||||
import emImage from "../website_buttons/easrng.gif";
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
name: string,
|
|
||||||
alt_text: string,
|
|
||||||
website: string
|
|
||||||
};
|
|
||||||
|
|
||||||
const { name, alt_text, website } = Astro.props;
|
|
||||||
|
|
||||||
const images: { [key: string]: ImageMetadata } = {
|
|
||||||
"allissa": allissaImage,
|
|
||||||
"em": emImage
|
|
||||||
};
|
|
||||||
---
|
|
||||||
|
|
||||||
<a href={website}><Image src={images[name]} alt={alt_text} class="website_button" quality={100} /></a>
|
|
|
@ -1,21 +1,11 @@
|
||||||
import { z, defineCollection } from "astro:content";
|
import { defineCollection } from "astro:content";
|
||||||
import { friends_schema } from "../schema/friends_schema";
|
|
||||||
|
|
||||||
const homepageCollection = defineCollection({});
|
const homepageCollection = defineCollection({});
|
||||||
const friendsCollection = defineCollection({
|
const friendsCollection = defineCollection({});
|
||||||
type: 'data',
|
const projectsCollection = defineCollection({});
|
||||||
schema: friends_schema
|
|
||||||
});
|
|
||||||
const projectsCollection = defineCollection({
|
|
||||||
type: 'content',
|
|
||||||
schema: z.object({
|
|
||||||
title: z.string(),
|
|
||||||
description: z.string()
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
export const collections = {
|
export const collections = {
|
||||||
'homepage': homepageCollection,
|
homepage: homepageCollection,
|
||||||
'friends': friendsCollection,
|
friends: friendsCollection,
|
||||||
'projects': projectsCollection
|
projects: projectsCollection,
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "allissa",
|
|
||||||
"website": "https://itzzen.net/",
|
|
||||||
"description": "the website girl! shes cute!",
|
|
||||||
"website_button": {
|
|
||||||
"name": "allissa",
|
|
||||||
"alt_text": "a black box that says \"allissa's comfy burrow, now!\", with the now at the top right corner."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "em / easrng",
|
|
||||||
"website": "https://easrng.net/",
|
|
||||||
"description": "she likes javascript, and shes gay..!",
|
|
||||||
"website_button": {
|
|
||||||
"name": "em",
|
|
||||||
"alt_text": "a purple colored planet with a the text \"easrng\" above it, the text written in cursive and purple is flowing in and out of the text."
|
|
||||||
}
|
|
||||||
}
|
|
7
src/content/friends/friends.md
Normal file
7
src/content/friends/friends.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# my friends cool websites
|
||||||
|
|
||||||
|
## [Mossfet!](https://mossfet.xyz)
|
||||||
|
this cool robot is cool and i love it :3. check out its website here :3!
|
||||||
|
|
||||||
|
## [TakeV / Lambda System](https://ta-kev.digital)
|
||||||
|
cool robot system whos nice and has a cool website :3! it beeps and boops!
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Mossfet",
|
|
||||||
"website": "https://mossfet.xyz",
|
|
||||||
"description": "this cool robot is cool and i love it :3. check out its website here :3!"
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"name": "TakeV / Lambda System",
|
|
||||||
"website": "https://ta-kev.digital",
|
|
||||||
"description": "cool robot system whos nice and has a cool website :3! it beeps and boops!"
|
|
||||||
}
|
|
|
@ -1,18 +1,15 @@
|
||||||
---
|
---
|
||||||
import Friend from "../components/Friend.astro";
|
|
||||||
import Layout from "../layouts/Layout.astro";
|
import Layout from "../layouts/Layout.astro";
|
||||||
import { getCollection } from "astro:content";
|
import { getEntryBySlug } from "astro:content";
|
||||||
|
|
||||||
const friends = await getCollection("friends");
|
const shoutouts = await getEntryBySlug("friends", "friends");
|
||||||
|
const { Content } = await shoutouts.render();
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="fries gay friends">
|
<Layout title="fries gay friends">
|
||||||
<main>
|
<main>
|
||||||
<h1>my friends cool websites</h1>
|
|
||||||
<section aria-label="a place where i shoutout my friends sites.">
|
<section aria-label="a place where i shoutout my friends sites.">
|
||||||
{friends.map(friend => (
|
<Content />
|
||||||
<Friend friend={friend.data} />
|
|
||||||
))}
|
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
import Layout from "../layouts/Layout.astro";
|
import Layout from "../layouts/Layout.astro";
|
||||||
import { getCollection } from "astro:content";
|
import { getCollection, getEntryBySlug } from "astro:content";
|
||||||
|
|
||||||
const projects = await getCollection("projects");
|
const projects = await getCollection("projects");
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
import { z } from "astro:content";
|
|
||||||
|
|
||||||
const friends_schema = z.object({
|
|
||||||
name: z.string(),
|
|
||||||
website: z.string(),
|
|
||||||
description: z.string(),
|
|
||||||
website_button: z.optional(
|
|
||||||
z.object({
|
|
||||||
name: z.string(),
|
|
||||||
alt_text: z.string(),
|
|
||||||
}),
|
|
||||||
),
|
|
||||||
});
|
|
||||||
|
|
||||||
type friends = z.infer<typeof friends_schema>
|
|
||||||
|
|
||||||
export {friends_schema, type friends};
|
|
|
@ -91,12 +91,3 @@ nav {
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip {
|
|
||||||
text-decoration: underline;
|
|
||||||
text-decoration-style: dotted;
|
|
||||||
}
|
|
||||||
|
|
||||||
.website_button {
|
|
||||||
image-rendering: pixelated;
|
|
||||||
}
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 224 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.8 KiB |
Loading…
Reference in a new issue