···11----
22-import Layout from "../layouts/Layout.astro";
33-import { Client } from "@notionhq/client";
44-55-const notion = new Client({ auth: import.meta.env.NOTION_INTEGRATION_TOKEN });
66-const databaseId = import.meta.env.NOTION_DATABASE_ID;
77-88-const bookmarks = await notion.databases.query({
99- database_id: databaseId,
1010-});
1111----
1212-1313-<Layout
1414- title="Dane's site / Bookmarks"
1515- description="Articles or code snippets I've found on the web that are interesting."
1616->
1717- <h1 class="mt-4 mb-4 text-2xl font-bold text-snes-black">Bookmarks</h1>
1818- <ul class="grid grid-cols-1 gap-2 md:grid-cols-2 lg:grid-cols-3 auto-cols-fr">
1919- {
2020- bookmarks.results.map((bookmark) => (
2121- <li>
2222- <a
2323- href={bookmark?.properties?.URL?.url}
2424- target="_blank"
2525- rel="noreferrer noopener"
2626- aria-label={`${bookmark?.properties?.Title?.title[0].plain_text}, opens in a new tab`}
2727- class="[border-style:outset] border-2 border-white p-3 hover:[border-style:inset] focus-visible:outline-4 focus-visible:outline-offset-1 focus-visible:outline-snes-purple focus-visible:outline-dashed focus-visible:underline hover:underline w-full h-full flex flex-col"
2828- >
2929- <h2 class="font-bold">
3030- {bookmark?.properties?.Title?.title[0].plain_text}
3131- </h2>
3232- <p class="mt-auto text-sm">
3333- {bookmark?.properties?.Author.rich_text[0]?.plain_text}
3434- </p>
3535- </a>
3636- </li>
3737- ))
3838- }
3939- </ul>
4040-</Layout>
+1-53
src/pages/index.astro
···66 title="Dane's site / Home"
77 description="Hey, I'm Dane. A frontend/fullstack developer from Toronto that enjoys building cool and accessible websites using the latest web technologies."
88>
99- <div>
1010- <h1 class="mt-4 text-2xl font-bold text-snes-black">Howdy, I'm Dane</h1>
1111- <div class="my-3"></div>
1212- <p>
1313- A frontend/fullstack developer from Toronto that enjoys building cool and
1414- accessible websites using the latest web technologies. On my website
1515- you'll find things that I'm working on, my interests and maybe a blog post
1616- or two when I find the time to write.
1717- </p>
1818- <div class="my-3"></div>
1919- <p>
2020- In my spare time I enjoy playing video games with my friends, finding new
2121- places in the city to eat at, listening to music, skateboarding, biking,
2222- building insane website ideas and most importantly napping.
2323- </p>
2424- <div class="border-b-4 [border-style:double] border-snes-purple my-4"></div>
2525- <h2 class="text-lg font-bold">
2626- Other places on the internet where you can find me:
2727- </h2>
2828- <ul class="mb-3 list-disc list-inside">
2929- <li>
3030- <a
3131- href="https://www.linkedin.com/in/dmiller94/"
3232- target="_blank"
3333- aria-label="Dane's linkedin profile, opens in a new tab"
3434- class="text-blue-800 hover:underline link-focus"
3535- >
3636- Linkedin
3737- </a>
3838- </li>
3939- <li>
4040- <a
4141- rel="me"
4242- href="https://hachyderm.io/@dane"
4343- target="_blank"
4444- aria-label="Dane's mastodon profile, opens in a new tab"
4545- class="text-blue-800 hover:underline link-focus"
4646- >
4747- Mastodon
4848- </a>
4949- </li>
5050- <li>
5151- <a
5252- href="https://github.com/nulfrost"
5353- target="_blank"
5454- aria-label="Dane's github profile, opens in a new tab"
5555- class="text-blue-800 hover:underline link-focus"
5656- >
5757- Github
5858- </a>
5959- </li>
6060- </ul>
6161- </div>
99+ beep beep ima jeep
6210</Layout>
-34
src/pages/uses.astro
···11----
22-import Layout from "../layouts/Layout.astro";
33----
44-55-<Layout
66- title="Dane's site / Uses"
77- description="Tech / Hardware that I use on a daily basis."
88->
99- <h1 class="mt-4 text-2xl font-bold text-snes-black">Uses</h1>
1010- <p class="mb-8">
1111- Here you'll find things I use on a day to day basis for my job or for
1212- personal use. I tend to change my set up a little bit as the years go on but
1313- most of this stuff stays the same.
1414- </p>
1515- <h2 class="text-lg font-bold text-snes-black">Hardware</h2>
1616- <ul class="mb-8 list-disc list-inside">
1717- <li>Macbook Pro 2019 15 inch (Work)</li>
1818- <li>Macbook Air 2021 13 inch (Personal)</li>
1919- <li>Caldigit TS3 Plus</li>
2020- <li>NK65 Mechanical Keyboard</li>
2121- <ul class="pl-5 list-disc list-inside">
2222- <li>Loobedswitches Gateron Milky Yellow Switches, Lubed</li>
2323- <li>CHERRY PROFILE CEMENT GREY JAPANESE PBT DYE-SUB KEYCAPS SET</li>
2424- </ul>
2525- </ul>
2626- <h2 class="text-lg font-bold text-snes-black">Software</h2>
2727- <ul class="list-disc list-inside">
2828- <li>Visual Studio Code / Lazyvim</li>
2929- <li>Notion</li>
3030- <li>Google Chrome</li>
3131- <li>iTerm 2</li>
3232- <li>Docker</li>
3333- </ul>
3434-</Layout>