diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-20 00:31:03 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-20 00:31:03 -0500 |
| commit | 84df8d3ccb2b5e40f8a5a90ecd71e0ab463483be (patch) | |
| tree | 9bbefc8254a9a8681ba46a98b959e940b34364be /src/pages | |
| parent | 57965c763f38db0b7f48cae40169e52274a936cb (diff) | |
| download | personal-website-84df8d3ccb2b5e40f8a5a90ecd71e0ab463483be.tar.gz personal-website-84df8d3ccb2b5e40f8a5a90ecd71e0ab463483be.tar.bz2 personal-website-84df8d3ccb2b5e40f8a5a90ecd71e0ab463483be.zip | |
Navbar responsive design; Now using grid instead of flexbox
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.astro | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index b68a55c..1f6061d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -12,16 +12,16 @@ import '../styles/index.css'; <Image src={Profile} class="avatar" alt="Andrew Lee" height={200} width={200} /> <h1 id="title">Hey, I'm Andrew Lee!</h1> <div class="social"> - <a href="https://linkedin.alee14.me"> + <a href="https://linkedin.alee14.me" target="_blank"> <Icon name="fa6-brands:linkedin" /> </a> - <a href="https://github.alee14.me"> + <a href="https://github.alee14.me" target="_blank"> <Icon name="fa6-brands:github" /> </a> - <a href="https://youtube.alee14.me"> + <a href="https://youtube.alee14.me" target="_blank"> <Icon name="fa6-brands:youtube" /> </a> - <a href="https://instagram.alee14.me"> + <a href="https://instagram.alee14.me" target="_blank"> <Icon name="fa6-brands:instagram" /> </a> </div> @@ -58,21 +58,22 @@ import '../styles/index.css'; </ul> <h2>Vultr (Web Server)</h2> <ul> - <li>OS: Ubuntu Server</li> + <li>OS: Ubuntu Server 22.04 LTS</li> <li>CPU: Intel Xeon Processor (Skylake, IBRS)</li> <li>RAM: 1 GB</li> - <li>Storage: 25 GB (and 50 GB for Block Storage)</li> + <li>Storage: 25 GB (and 100 GB for Block Storage)</li> </ul> <h2>Proxmox</h2> <ul> <li>Model: Lenovo ThinkCentre M800</li> - <li>CPU: Intel Core i5-6500</li> + <li>CPU: Intel Core i5 6500</li> <li>RAM: 16 GB RAM</li> <li>Storage: 500 GB SSD, 2 TB SSD</li> </ul> </div> - <div class="box"> + <div class="box latest-posts"> <h1>Latest Posts</h1> + <p>Hello world</p> </div> </div> </main> |
