File tree Expand file tree Collapse file tree 3 files changed +17
-12
lines changed Expand file tree Collapse file tree 3 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 2
2
import " ../styles/index.css" ;
3
3
4
4
interface Props {
5
- title: string ;
5
+ title: string ;
6
6
}
7
7
8
8
const { title } = Astro .props ;
9
9
10
10
const canonicalURL = new URL (Astro .url .pathname , Astro .site );
11
11
const pageTitle =
12
- Astro .url .pathname === " /" ? title : ` ${title } | Hypertext TV ` ;
12
+ Astro .url .pathname === " /" ? title : ` ${title } | Hypertext TV ` ;
13
13
---
14
14
15
15
<!doctype html >
Original file line number Diff line number Diff line change @@ -14,28 +14,33 @@ import three from "../_images/three.svg";
14
14
<h2 >Built With</h2 >
15
15
<div class =" thanks" >
16
16
<a href =" https://astro.build/" >
17
- <Image src ={ astro } alt =" Astro" height ={ 64 } />
17
+ <Image src ={ astro } alt =" Astro" height ={ 64 } format = " svg " />
18
18
</a >
19
19
<a href =" https://biomejs.dev/" >
20
- <Image src ={ biome } alt =" Biome" height ={ 48 } />
20
+ <Image src ={ biome } alt =" Biome" height ={ 48 } format = " svg " />
21
21
</a >
22
22
<a href =" https://codepen.io/" >
23
- <Image src ={ codepen } alt =" Codepen" height ={ 44 } />
23
+ <Image src ={ codepen } alt =" Codepen" height ={ 44 } format = " svg " />
24
24
</a >
25
25
<a href =" https://www.figma.com/" >
26
- <Image src ={ figma } alt =" Figma" height ={ 48 } />
26
+ <Image src ={ figma } alt =" Figma" height ={ 48 } format = " svg " />
27
27
</a >
28
28
<a href =" https://threejs.org/" >
29
- <Image src ={ three } alt =" Three.js" height ={ 68 } />
29
+ <Image src ={ three } alt =" Three.js" height ={ 68 } format = " svg " />
30
30
</a >
31
31
<a href =" https://are.na/" >
32
- <Image src ={ arena } alt =" Are.na" height ={ 48 } />
32
+ <Image src ={ arena } alt =" Are.na" height ={ 48 } format = " svg " />
33
33
</a >
34
34
<a href =" https://frontend.horse/" >
35
- <Image src ={ frontendHorse } alt =" Frontend Horse" height ={ 80 } />
35
+ <Image
36
+ src ={ frontendHorse }
37
+ alt =" Frontend Horse"
38
+ height ={ 80 }
39
+ format =" svg"
40
+ />
36
41
</a >
37
42
<a href =" https://sfpc.study/" >
38
- <Image src ={ sfpc } alt =" SFPC" height ={ 68 } />
43
+ <Image src ={ sfpc } alt =" SFPC" height ={ 68 } format = " svg " />
39
44
</a >
40
45
</div >
41
46
</section >
Original file line number Diff line number Diff line change 2
2
import Television from " src/components/Television.astro" ;
3
3
import Layout from " src/layouts/Layout.astro" ;
4
4
import { GET } from " ../api/contributors.json" ;
5
+ import BuiltWith from " ./_sections/BuiltWith.astro" ;
5
6
import Featuring from " ./_sections/Featuring.astro" ;
6
7
import Fonts from " ./_sections/Fonts.astro" ;
7
8
import Intro from " ./_sections/Intro.astro" ;
8
9
import Rainbow from " ./_sections/Rainbow.astro" ;
9
- import Thanks from " ./_sections/Thanks.astro" ;
10
10
11
11
const response = await GET (Astro );
12
12
const contributors: string [] = await response .json ();
@@ -25,7 +25,7 @@ const contributors: string[] = await response.json();
25
25
<Intro />
26
26
<Featuring contributors ={ contributors } />
27
27
<Fonts />
28
- <Thanks />
28
+ <BuiltWith />
29
29
</div >
30
30
</div >
31
31
<Rainbow />
You can’t perform that action at this time.
0 commit comments