Skip to content

Commit 9a0271f

Browse files
authored
feat: add readme (#6)
* fix: edit home button styling on 404 page * fix: small typo * fix: small styling fixes * feat: update readme with relevant context
1 parent 349c1cf commit 9a0271f

File tree

4 files changed

+59
-13
lines changed

4 files changed

+59
-13
lines changed

README.md

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1-
# brian.md
1+
# 🐭 brian.md
22

3-
🚧 under construction
3+
my little corner of the web
4+
5+
> 🚧 **under construction**: beware!
6+
7+
built with [astro](https://astro.build/) ([react](https://react.dev/) + [tailwind](https://tailwindcss.com/)) and deployed on [vercel](https://vercel.com/)
8+
9+
typeset in [ibm plex mono](https://www.ibm.com/plex/) and [jetbrains mono](https://www.jetbrains.com/lp/mono/) (pixel accent font in [mondwest](https://pangrampangram.com/products/bitmap-fonts))
10+
11+
## 📁 project structure
12+
```
13+
/
14+
├── public/
15+
│ └── fonts/ (various fonts used)
16+
│ └── favicon.svg
17+
├── src/
18+
│ └── pages/ (page routes)
19+
│ └── index.astro
20+
│ └── 404.astro
21+
│ └── components/ (react/astro island components)
22+
│ └── layouts/ (header/footer + page skeleton)
23+
│ └── main.css (global styles)
24+
└── package.json
25+
```
26+
27+
## 🪄 commands
28+
| command | action |
29+
| :------------------------ | :----------------------------------------------- |
30+
| `npm install` | installs dependencies |
31+
| `npm run dev` | starts local dev server at `localhost:3000` |
32+
| `npm run build` | build your production site to `./dist/` |
33+
| `npm run preview` | preview your build locally, before deploying |
34+
| `npm run astro ...` | run cli commands like `astro add`, `astro check` |
35+
| `npm run astro -- --help` | get help using the astro cli |
36+
37+
## 💭 website inspiration
38+
- [nico.xyz](https://nico.xyz/)
39+
- [yihui.work](https://yihui.work/)
40+
- [ryo.lu](https://ryo.lu/)
41+
42+
## 📚 references
43+
- [astro docs](https://docs.astro.build/en/getting-started/)
44+
- [tailwindcss docs](https://tailwindcss.com/docs/installation)
45+
- [framer motion](https://www.framer.com/motion/)
46+
- [react hot toast](https://react-hot-toast.com/)
47+
- [date-fns](https://date-fns.org/)
48+
- [partytown](https://partytown.builder.io/)

src/pages/404.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ import Footer from "../layouts/Footer.astro";
2121
<p>HMM... LOOKS LIKE THERE'S NOTHING HERE.</p>
2222
<p>
2323
WOULD YOU LIKE TO RETURN?
24-
<span class="hover:bg-background hover:ease-in duration-150">
24+
<span class="rounded hover:bg-background hover:ease-in duration-150">
2525
<a
26-
class="p-1 font-code font-medium text-accent cursor-pointer hover:bg-accent/10 hover:rounded hover:ease-in duration-150"
26+
class="px-1 rounded font-code font-medium text-accent cursor-pointer hover:bg-accent/10 hover:ease-in duration-150"
2727
href="/"
2828
>
29-
GO HOME ↩
29+
<span class="pr-1 font-silkscreen">&gt;</span>HOME
3030
</a>
3131
</span>
3232
</p>

src/pages/index.astro

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const wave = {
8585
>
8686
<ul class="list-bracket space-y-2">
8787
<li>I'M AN ENGINEER FOCUSED ON CRYPTO AND WEB3.</li>
88-
<li>BASED IN SAN FRANCISCO, CA.</li>
88+
<li>BASED IN 🌁 SAN FRANCISCO, CA.</li>
8989
<ul class="py-1.5 text-muted">
9090
<li><LastCheckin client:load /></li>
9191
</ul>
@@ -98,9 +98,9 @@ const wave = {
9898
<li>
9999
📊 <a href="https://messari.io" target="_blank"
100100
><LinkButton client:load text="MESSARI" /></a
101-
> (<span class="hover:bg-background hover:ease-in duration-150"
101+
> (<span class="rounded hover:bg-background hover:ease-in duration-150"
102102
><a
103-
class="px-px font-code font-medium text-accent cursor-pointer hover:bg-accent/10 hover:rounded hover:ease-in duration-150"
103+
class="px-px rounded font-code font-medium text-accent cursor-pointer hover:bg-accent/10 hover:ease-in duration-150"
104104
href="https://messari.io/protocol-explorer/all-protocols"
105105
target="_blank">ON-CHAIN DATA</a
106106
></span
@@ -110,9 +110,9 @@ const wave = {
110110
<li>
111111
👀 <a href="https://www.dapperlabs.com" target="_blank"
112112
><LinkButton client:load text="DAPPER LABS" /></a
113-
> (<span class="hover:bg-background hover:ease-in duration-150"
113+
> (<span class="rounded hover:bg-background hover:ease-in duration-150"
114114
><a
115-
class="px-px font-code font-medium text-accent cursor-pointer hover:bg-accent/10 hover:rounded hover:ease-in duration-150"
115+
class="px-px rounded font-code font-medium text-accent cursor-pointer hover:bg-accent/10 hover:ease-in duration-150"
116116
href="https://flow.com"
117117
target="_blank">FLOW</a
118118
></span
@@ -121,9 +121,9 @@ const wave = {
121121
<li>
122122
🌀 <a href="https://consensys.io" target="_blank"
123123
><LinkButton client:load text="CONSENSYS" /></a
124-
> (<span class="hover:bg-background hover:ease-in duration-150"
124+
> (<span class="rounded hover:bg-background hover:ease-in duration-150"
125125
><a
126-
class="px-px font-code font-medium text-accent cursor-pointer hover:bg-accent/10 hover:rounded hover:ease-in duration-150"
126+
class="px-px rounded font-code font-medium text-accent cursor-pointer hover:bg-accent/10 hover:ease-in duration-150"
127127
href="https://bounties.network"
128128
target="_blank">BOUNTIES NETWORK</a
129129
></span
@@ -145,7 +145,7 @@ const wave = {
145145
<li>
146146
🪄 <a href="https://www.innovativedesign.club" target="_blank"
147147
><LinkButton client:load text="INNOVATIVE DESIGN" /></a
148-
>, LED WEB VARIOUS DEVELOPMENT INITIATIVES (UI/UX & ANIMATIONS)
148+
>, LED VARIOUS WEB DEVELOPMENT INITIATIVES (UI/UX & ANIMATIONS)
149149
</li>
150150
</ul>
151151
<li>SOME UNREFINED SIDE PROJECTS:</li>

tailwind.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ module.exports = {
2525
mono: ['"IBM Plex Mono"', ...defaultTheme.fontFamily.mono],
2626
code: ['"JetBrains Mono"'],
2727
pixel: ['Mondwest'],
28+
silkscreen: ['Silkscreen'],
2829
},
2930
listStyleType: {
3031
bracket: '"> "',

0 commit comments

Comments
 (0)