Skip to content

Commit

Permalink
new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
benlower committed Apr 11, 2024
1 parent 58bdf22 commit 7aa4a76
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions public/logo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
████████ ██ ██ ███████ ███████ █████ ███████ ████████ ███████ ███████ ████████ █████ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ███████ █████ █████ ███████ ███████ ██ █████ ███████ ██ ███████ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ███████ ██ ██ ██ ███████ ██ ███████ ███████ ██ ██ ██ ██ ██
7 changes: 6 additions & 1 deletion src/components/Navbar.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
---
import Section from './Section.astro';
import fs from 'node:fs/promises';
const url = new URL('../../public/logo.txt', import.meta.url);
const data = await fs.readFile(url, 'utf8');
---

<Section>
<div class="flex justify-between">
<div class="text-3xl font-bold">Fastest.ai</div>
<pre class="text-xs">{data}</pre>
<div class="flex items-center">
<!-- Light/Dark Mode Switch -->
<div class="ml-3 flex flex-col justify-center">
Expand Down

0 comments on commit 7aa4a76

Please sign in to comment.