Compare commits

...

2 Commits

Author SHA1 Message Date
f8876eac9b Add embed 2024-10-15 23:02:21 +02:00
bce821f8b3 Change adapter 2024-10-15 23:00:03 +02:00
9 changed files with 45 additions and 2 deletions

21
.gitignore vendored Normal file
View File

@ -0,0 +1,21 @@
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 Normal file
View File

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

4
.prettierignore Normal file
View File

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

8
.prettierrc Normal file
View File

@ -0,0 +1,8 @@
{
"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,7 +34,8 @@
"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,6 +28,14 @@
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">

BIN
static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

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