All Projects → matfantinel → matfantinel.github.io

matfantinel / matfantinel.github.io

Licence: GPL-3.0 License
Personal website made with SvelteKit and hosted on GitHub Pages

Programming Languages

Svelte
593 projects
SCSS
7915 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to matfantinel.github.io

webstone
Start your next full-stack application with Webstone and configure it as you go.
Stars: ✭ 71 (-11.25%)
Mutual labels:  svelte, sveltekit
hue.tools
Simple toolbox for working with colors. Color mixing, blending, conversion, modification, detailed information, etc.
Stars: ✭ 331 (+313.75%)
Mutual labels:  svelte, sveltekit
kickstart
Ruby on Rails application templates
Stars: ✭ 61 (-23.75%)
Mutual labels:  svelte, sveltekit
svelte-parallax
a (small) spring-based parallax component library for Svelte
Stars: ✭ 87 (+8.75%)
Mutual labels:  svelte, sveltekit
awesome-svelte-kit
Curated resources on building sites with SvelteKit - A server-less-first answer to "the Next.js experience" by the Svelte community
Stars: ✭ 55 (-31.25%)
Mutual labels:  svelte, sveltekit
sveltekit-electron
Minimal Sveltekit + Electron starter template.
Stars: ✭ 146 (+82.5%)
Mutual labels:  svelte, sveltekit
website
Gitpod website and documentation
Stars: ✭ 233 (+191.25%)
Mutual labels:  svelte, sveltekit
sveltekit-magic
An implementation of passwordless authentication using Magic with SvelteKit.
Stars: ✭ 38 (-52.5%)
Mutual labels:  svelte, sveltekit
programmingtil-svelte
No description or website provided.
Stars: ✭ 59 (-26.25%)
Mutual labels:  svelte, sveltekit
focus-svelte
focus lock for svelte
Stars: ✭ 18 (-77.5%)
Mutual labels:  svelte, sveltekit
generator-jhipster-svelte
Generate Svelte powered JHipster web applications
Stars: ✭ 44 (-45%)
Mutual labels:  svelte, sveltekit
markushatvan.com
Personal website and blog written from scratch with SvelteKit and TailwindCSS.
Stars: ✭ 82 (+2.5%)
Mutual labels:  svelte, sveltekit
svelte-adapter-deno
A SvelteKit adapter for Deno
Stars: ✭ 152 (+90%)
Mutual labels:  svelte, sveltekit
website
🏡 My personal website! Now built with Svelte...
Stars: ✭ 18 (-77.5%)
Mutual labels:  svelte, sveltekit
portfolio-svelte
My over-complicated personal site. A place to show off work and writing, and a place to try weird stuff.
Stars: ✭ 24 (-70%)
Mutual labels:  svelte, sveltekit
svelte-toy
A toy for svelte data stores
Stars: ✭ 73 (-8.75%)
Mutual labels:  svelte, sveltekit
sveltekit-blog
Sveltekit blog starter project created with sveltekit, typescript, tailwindcss, postcss, husky, and storybook. The project has the structure set up for the scaleable web application.
Stars: ✭ 100 (+25%)
Mutual labels:  svelte, sveltekit
hagura-sveltekit
A minimal markdown blog template built using SvelteKit
Stars: ✭ 51 (-36.25%)
Mutual labels:  svelte, sveltekit
svelte-starter-kit
Svelte with brilliant bells and useful whistles
Stars: ✭ 384 (+380%)
Mutual labels:  svelte, sveltekit
turbosvelte
A SvelteKit monorepo starter project powered by Turborepo!
Stars: ✭ 47 (-41.25%)
Mutual labels:  svelte, sveltekit

matfantinel.github.io / fantinel.dev

This is my own personal website, built with SvelteKit. It also holds my own personal blog.

Screenshot

It was built with a few goals in mind:

  • Responsive design: the website looks and behaves well on screens of all sizes;
  • Fast: it only loads what's needed for it to work;
  • Adaptive: it supports dark mode from most operating systems by default (desktop and mobile);
  • Privacy-friendly: I don't need to know who you are and what you do. It uses Plausible instead of Google Analytics;
  • Pretty: have a pleasant design that is both accessible and pleasing to the eye.

I achieved this with the help of SvelteKit. There is almost no JavaScript running, and it actually works with JS disabled! While JS is awesome, it's important to know when it's not needed.

Building & Running Locally

This website is powered by SvelteKit. As of this time, SvelteKit is currently in beta, but its API is stable enough to use it.

To run it locally, you simply have to run:

# First, install dependencies
npm install
# Then, run it on dev mode
npm run dev

The site should now be available at http://0.0.0.0:3000/ on your local machine, and your local machine's IP address on your network—great for testing on mobile OSes.

Optimizing images

I've built an image-optimizer script called image-transmutation that is used on this website. For now, you have to run it manually, while I don't push it to npm.

On the image-transmutation project folder, run:

node ./index.js --run --sourceFolder "{YOUR_PROJECT_FOLDER}/static/images" --targetFolder "{YOUR_PROJECT_FOLDER}/static/optimized-images" --inputFormats "jpg" --inputFormats "jpeg" --inputFormats "png" --outputFormats "webp" --outputFormats "avif" --outputFormats "png"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].