A website for your valentine ~
Inspired from this website
- Astro
- Typescript
- Tailwind
- [CONTENT] Just read
src/content/loves/main.mdto change the text / image - [COLOR] Just modify it directly on
tailwind.config.mjs - [FONT] Just modify it directly on
font.cssandtailwind.config.mjs
- Using
nodejs - Don't forget to
npm install - Just run
npm run dev
- Vercel [difficulty: EASY]
- Forked this repo to your own account
- Using your Vercel Account which already bind to Git(hub/lab)
- next next next finish, and deployed !
- Netlify [difficulty: EASY]
- Fork this repo to your own account
- Using your Netlify Account which already bind to Git(hub/lab)
- next next next finish and deployed
- Github Pages [difficulty: NOT-SO-EASY]
- Absolutely needed: Github Account
- Fork This Repo to your github account
- Go to Repository
Settings->Pages->Build and Deployment (Source)and chooseGithub Actions (Beta) - Modify file
astro.config.mjs(baseandsite)import { defineConfig } from 'astro/config'; import tailwind from "@astrojs/tailwind"; // https://astro.build/config export default defineConfig({ integrations: [tailwind()], // 'https://<your-github-account>.github.io' site: 'https://myaccount-github.io' // this will refer to the name of the repository, don't forget the slash base: '/apps-valentine-showcase' });
- Commit and Push, Actions will be triggered, just wait for the deployment done
- You can access it via `https://my-account.github.io/apps-valentine-showcase
- Based on This Documentation