Skip to content

Commit 103d82f

Browse files
committed
WIP: Puts the website as under construction
1 parent ed5f596 commit 103d82f

File tree

4 files changed

+40
-35
lines changed

4 files changed

+40
-35
lines changed

src/components/BaseHead.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ const { title, description, image = "/open-graph.jpg" } = Astro.props
1515
<!-- Global Metadata -->
1616
<meta charset="utf-8" />
1717
<meta name="viewport" content="width=device-width,initial-scale=1" />
18-
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
18+
<!-- <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> -->
19+
<link rel="icon" type="image/svg+xml" href="/memoji-macbook.png" />
1920
<meta name="generator" content={Astro.generator} />
2021

2122
<link rel="preload" href="/fonts/atkinson-regular.woff" as="font" type="font/woff" crossorigin>

src/components/Header.astro

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ import Container from "@components/Container.astro"
1111
<div class="relative h-full w-full">
1212
<div class="absolute left-0 top-1/2 -translate-y-1/2 flex gap-1 font-semibold">
1313
<a href="/" class="flex gap-1 text-current hover:text-black dark:hover:text-white transition-colors duration-300 ease-in-out">
14-
<svg class="size-6 fill-current">
15-
<use href="/brand.svg#brand"></use>
16-
</svg>
14+
<!-- <svg class="size-6 fill-current"> -->
15+
<!-- <use href="/brand.svg#brand"></use> -->
16+
<!-- <use href="/memoji-macbook.svg#brand"></use> -->
17+
<!-- </svg> -->
1718
<div>
1819
{SITE.TITLE}
1920
</div>

src/consts.ts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@ export const SEARCH: Page = {
3333

3434
// Links
3535
export const LINKS: Links = [
36-
{
37-
TEXT: "Home",
38-
HREF: "/",
39-
},
40-
{
41-
TEXT: "Work",
42-
HREF: "/work",
43-
},
44-
{
45-
TEXT: "Blog",
46-
HREF: "/blog",
47-
},
48-
{
49-
TEXT: "Projects",
50-
HREF: "/projects",
51-
},
36+
// {
37+
// TEXT: "Home",
38+
// HREF: "/",
39+
// },
40+
// {
41+
// TEXT: "Work",
42+
// HREF: "/work",
43+
// },
44+
// {
45+
// TEXT: "Blog",
46+
// HREF: "/blog",
47+
// },
48+
// {
49+
// TEXT: "Projects",
50+
// HREF: "/projects",
51+
// },
5252
];
5353

5454
// Socials

src/pages/index.astro

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -80,23 +80,26 @@ const stack = [
8080
<div class='relative w-full h-full flex items-center justify-center'>
8181
<div class='p-5 text-center'>
8282
<p class='animated text-lg md:text-xl lg:text-2xl font-semibold opacity-75'>
83-
Hello, my name is
83+
<!-- Hello, my name is -->
8484
</p>
85-
<p class='animated text-2xl md:text-3xl lg:text-4xl font-bold uppercase text-black dark:text-white'>
86-
Guilherme Teixeira
87-
</p>
88-
<p class='animated text-sm md:text-base lg:text-lg opacity-75'>
85+
<!-- <p class='animated text-2xl md:text-3xl lg:text-4xl font-bold uppercase text-black dark:text-white'> -->
86+
<!-- Guilherme Teixeira -->
87+
<!-- </p> -->
88+
<del class='animated text-2xl md:text-3xl lg:text-4xl font-bold uppercase text-black dark:text-white'>
89+
UNDER CONSTRUCTION
90+
</del>
91+
<!-- <p class='animated text-sm md:text-base lg:text-lg opacity-75'> -->
8992
<!-- Currently designing products for humans. -->
90-
and I am a software developer
91-
</p>
92-
<div id="ctaButtons" class='animated flex flex-wrap gap-4 justify-center mt-5'>
93-
<a href='/blog' class='py-2 px-4 rounded truncate text-xs md:text-sm lg:text-base bg-black dark:bg-white text-white dark:text-black hover:opacity-75 blend'>
94-
Read my blog
95-
</a>
96-
<a href='/work' class='py-2 px-4 truncate rounded text-xs md:text-sm lg:text-base border border-black/25 dark:border-white/25 hover:bg-black/5 hover:dark:bg-white/15 blend'>
97-
View my work
98-
</a>
99-
</div>
93+
<!-- and I am a software developer -->
94+
<!-- </p> -->
95+
<!-- <div id="ctaButtons" class='animated flex flex-wrap gap-4 justify-center mt-5'> -->
96+
<!-- <a href='/blog' class='py-2 px-4 rounded truncate text-xs md:text-sm lg:text-base bg-black dark:bg-white text-white dark:text-black hover:opacity-75 blend'> -->
97+
<!-- Read my blog -->
98+
<!-- </a> -->
99+
<!-- <a href='/work' class='py-2 px-4 truncate rounded text-xs md:text-sm lg:text-base border border-black/25 dark:border-white/25 hover:bg-black/5 hover:dark:bg-white/15 blend'> -->
100+
<!-- View my work -->
101+
<!-- </a> -->
102+
<!-- </div> -->
100103
</div>
101104
</div>
102105
</div>

0 commit comments

Comments
 (0)