Compare commits

..

No commits in common. "f8876eac9bf49d12b0371c184d3797e112c80c91" and "58f3b8af8c89349a40b56492d3776998f05a6dbf" have entirely different histories.

9 changed files with 2 additions and 45 deletions

21
.gitignore vendored
View File

@ -1,21 +0,0 @@
node_modules
# Output
.output
.vercel
/.svelte-kit
/build
# OS
.DS_Store
Thumbs.db
# Env
.env
.env.*
!.env.example
!.env.test
# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

1
.npmrc
View File

@ -1 +0,0 @@
engine-strict=true

View File

@ -1,4 +0,0 @@
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock

View File

@ -1,8 +0,0 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}

BIN
bun.lockb

Binary file not shown.

View File

@ -34,8 +34,7 @@
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"@arisbh/marqueeck": "^0.5.0", "@arisbh/marqueeck": "^0.5.0",
"@iconify/svelte": "^4.0.2", "@iconify/svelte": "^4.0.2"
"@sveltejs/adapter-node": "^5.2.7"
}, },
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
} }

View File

@ -28,14 +28,6 @@
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap"
rel="stylesheet" rel="stylesheet"
/> />
<meta content="Leafus.wtf" property="og:title" />
<meta content="Hello! I'm Leafus >~<, a web developer & designer" property="og:description" />
<meta
content="https://leafus.wtf/logo.png"
property="og:image"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta content="#F4788C" data-react-helmet="true" name="theme-color" />
%sveltekit.head% %sveltekit.head%
</head> </head>
<body class="max-w-[90%] m-auto" data-sveltekit-preload-data="hover"> <body class="max-w-[90%] m-auto" data-sveltekit-preload-data="hover">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -1,4 +1,4 @@
import adapter from '@sveltejs/adapter-node'; import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */ /** @type {import('@sveltejs/kit').Config} */