File tree 5 files changed +17
-2
lines changed
5 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import NavCard from "./NavCard.astro";
10
10
<NavCard title =" Skills" href =" /skills" colour =" #fab387" />
11
11
<NavCard title =" Awards" href =" /awards" colour =" #f9e2af" />
12
12
<NavCard title =" Work" href =" /work" colour =" #a6e3a1" />
13
+ <NavCard title =" Art" href =" /art" colour =" #89dceb" />
13
14
<NavCard title =" Blog" href =" /blog" colour =" #89b4fa" />
14
15
<NavCard title =" Contact" href =" /contact" colour =" #b4befe" />
15
16
</nav >
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ const { show } = Astro.props as Props;
18
18
<NavLink href =" /skills" colour =" #fab387" />
19
19
<NavLink href =" /awards" colour =" #f9e2af" />
20
20
<NavLink href =" /work" colour =" #a6e3a1" />
21
+ <NavLink href =" /art" colour =" #89dceb" />
21
22
<NavLink href =" /blog" colour =" #89b4fa" />
22
23
<NavLink href =" /contact" colour =" #b4befe" />
23
24
</nav >
Original file line number Diff line number Diff line change
1
+ ---
2
+ import Base from " ../layouts/Base.astro" ;
3
+ import Content from " ../layouts/Content.astro" ;
4
+ ---
5
+
6
+ <Base title =" Art" >
7
+ <Content title =" Art" prev =" /work" next =" /blog" >
8
+ <img
9
+ class =" mx-auto h-32 w-32 object-cover"
10
+ src =" https://www.dropbox.com/scl/fi/67cieytlxtu49dxhgqa5r/tennis.jpg?rlkey=wlko5d19e2g835fcp8psl5ivh&st=8wrlmca3&raw=1"
11
+ />
12
+ </Content >
13
+ </Base >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const posts = await Astro.glob<Frontmatter>("./blog/*.mdx");
11
11
---
12
12
13
13
<Base title =" Blog" >
14
- <Content title =" Blog" prev =" /work " next =" /contact" >
14
+ <Content title =" Blog" prev =" /art " next =" /contact" >
15
15
<div class =" mx-auto mt-8 md:mt-16" >
16
16
{
17
17
posts
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import Content from "../layouts/Content.astro";
5
5
---
6
6
7
7
<Base title =" Work" >
8
- <Content title =" Work" prev =" /awards" next =" /blog " >
8
+ <Content title =" Work" prev =" /awards" next =" /art " >
9
9
<Scroll />
10
10
</Content >
11
11
</Base >
You can’t perform that action at this time.
0 commit comments