Compare commits

..

No commits in common. "f789e792a4fea6e8dc46796dc0018f7546c44c46" and "68fa501003fb714c57e52f10f83f472bf43858ca" have entirely different histories.

7 changed files with 3654 additions and 4833 deletions

View File

@ -1,6 +1,6 @@
<script setup lang="ts">
import { getPrettyDate, getUtcDate } from "~~/shared/metadata";
import type { AnyParsedContent } from "~~/shared/types";
import { AnyParsedContent } from "~~/shared/types";
const props = defineProps<{ doc: AnyParsedContent }>();

View File

@ -1,101 +0,0 @@
<script setup lang="ts">
const props = defineProps<{ strings: string[]; class?: string }>();
</script>
<template>
<h1 :class="[props.class, 'text-loop relative text-center w-full h-16']">
<span class="text absolute w-full" v-for="s in props.strings" :key="s">
{{ s }}
</span>
</h1>
</template>
<style scoped lang="scss">
@use "sass:math";
@mixin text-loop($els) {
.text-loop {
overflow: hidden;
$duration: 3s;
@if $els > 1 {
& > span {
display: block;
opacity: 0;
@for $i from 1 through $els {
&:nth-child(#{$i}) {
animation: move-test-#{$i} $duration * $els infinite;
}
}
}
}
}
@for $i from 1 through $els {
@keyframes move-test-#{$i} {
$interval: calc(100% / $els);
$upper_bound: $interval * $i;
$lower_bound: $interval * ($i - 1);
// we try to make the previous exit and the next enter
// at the same time, also taking care of negatives
// for i = 1, this is negative, so start the animation at the end of the cycle
@if $i > 1 {
0% {
opacity: 0;
transform: translateY(100%);
}
#{$lower_bound - $interval * 0.05} {
opacity: 0;
transform: translateY(100%);
}
}
#{$lower_bound} {
opacity: 1;
transform: translateY(0%);
}
#{$lower_bound + $interval * 0.95} {
opacity: 1;
transform: translateY(0%);
}
#{$upper_bound} {
opacity: 0;
transform: translateY(-100%);
}
@if $i == 1 {
// reset el 1
#{100% - $interval * 0.05} {
opacity: 0;
transform: translateY(100%);
}
100% {
opacity: 1;
transform: translateY(0%);
}
} @else {
100% {
opacity: 0;
transform: translateY(-100%);
}
}
}
}
}
/**
* For one element, we have the following pattern. To expand it to 2+
* els, we divide 100% by the number of els and turn on the animation
* only at the correct time.
* -5%: invis
* 0%: vis
* 95%: vis
* 100%: invis
*/
@include text-loop(3);
</style>

View File

@ -1,6 +1,6 @@
<script setup lang="ts">
import { revisions } from "@/data/siteRevisions";
useHead({ title: "Oeufs?" });
useHead({ title: "Eggworld" });
</script>
<template>
@ -10,7 +10,7 @@ useHead({ title: "Oeufs?" });
<footer
class="flex items-center justify-between p-3 bg-gray-100 w-full text-sm dark:bg-gray-800 flex-col md:flex-row gap-2"
>
<label class="flex items-center gap-2">
<div class="flex items-center gap-2">
<p>Revision:</p>
<!--
the onchange is so bad - i'd rather it be done through vue
@ -26,7 +26,7 @@ useHead({ title: "Oeufs?" });
{{ r.title }}
</option>
</select>
</label>
</div>
<div class="flex flex-col items-center">
<p>
Licensed under the AGPL-3.0 on
@ -49,9 +49,7 @@ useHead({ title: "Oeufs?" });
html {
background: white;
color: black;
transition:
color 0.2s ease,
background 0.2s ease;
transition: color 0.2s ease, background 0.2s ease;
overflow-x: hidden;
overflow-y: scroll;
scroll-behavior: smooth;

View File

@ -31,7 +31,7 @@ export default defineNuxtConfig({
"@nuxt/content",
"@nuxtjs/tailwindcss",
"@nuxtjs/color-mode",
"@nuxtjs/sitemap",
"@funken-studio/sitemap-nuxt-3",
],
css: ["@/assets/css/main.scss"],
nitro: {
@ -42,11 +42,9 @@ export default defineNuxtConfig({
typescript: {
shim: false,
},
site: {
url: process.env.BASE_URL || "https://eggworld.me",
},
/* @ts-expect-error */
sitemap: {
strictNuxtContentPaths: true,
hostname: process.env.BASE_URL || "https://eggworld.me",
},
tailwindcss: {},
colorMode: {
@ -96,9 +94,6 @@ export default defineNuxtConfig({
},
},
experimental: {
sharedPrerenderData: true,
},
features: {
noScripts: true,
},
});

View File

@ -7,20 +7,21 @@
"preview": "nuxt preview"
},
"devDependencies": {
"@nuxt/content": "^2.12.0",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/sitemap": "^5.1.0",
"@nuxtjs/tailwindcss": "^6.11.4",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.24",
"dayjs": "^1.11.10",
"nuxt": "3.10.3",
"prettier": "^3.2.5",
"@funken-studio/sitemap-nuxt-3": "^4.0.4",
"@nuxt/content": "^2.6.0",
"@nuxtjs/color-mode": "^3.2.0",
"@nuxtjs/tailwindcss": "^6.7.0",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.2.5",
"dayjs": "^1.11.7",
"nuxt": "3.5.2",
"prettier": "^3.1.1",
"reading-time": "^2.0.0-1",
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0",
"sass": "^1.71.1",
"typescript": "^5.3.3",
"vite-svg-loader": "^5.1.0"
"rehype-katex": "^6.0.3",
"remark-math": "^5.1.1",
"sass": "^1.62.1",
"typescript": "^5.0.4",
"unist-util-visit": "^4.1.2",
"vite-svg-loader": "^4.0.0"
}
}

View File

@ -4,14 +4,12 @@ import About from "@/components/index/about.vue";
//definePageMeta({ layout: "withtop" });
useTitle("Home", "Personal website!");
const welcomeStrings = ["Welcome!", "Bienvenue!", "欢迎!"];
</script>
<template>
<main class="flex flex-col items-center justify-around gap-8">
<div class="flex flex-col items-center">
<HeaderLoop class="text-bitter font-bold" :strings="welcomeStrings" />
<h1 class="text-bitter font-bold">Welcome!</h1>
<p>What are you here to see?</p>
<p>
For my portfolio, please visit

8330
yarn.lock

File diff suppressed because it is too large Load Diff