Skip to content

Commit ed5f596

Browse files
committed
Adds personalized info
1 parent dcaa470 commit ed5f596

File tree

2 files changed

+43
-43
lines changed

2 files changed

+43
-43
lines changed

src/consts.ts

Lines changed: 39 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,80 @@
1-
import type { Site, Page, Links, Socials } from "@types"
1+
import type { Site, Page, Links, Socials } from "@types";
22

33
// Global
44
export const SITE: Site = {
5-
TITLE: "Astro Sphere",
6-
DESCRIPTION: "Welcome to Astro Sphere, a portfolio and blog for designers and developers.",
7-
AUTHOR: "Mark Horn",
8-
}
5+
TITLE: "Guilherme Teixeira",
6+
DESCRIPTION: "Welcome my website.",
7+
AUTHOR: "Guilherme Teixeira",
8+
};
99

1010
// Work Page
1111
export const WORK: Page = {
1212
TITLE: "Work",
1313
DESCRIPTION: "Places I have worked.",
14-
}
14+
};
1515

1616
// Blog Page
1717
export const BLOG: Page = {
1818
TITLE: "Blog",
1919
DESCRIPTION: "Writing on topics I am passionate about.",
20-
}
20+
};
2121

22-
// Projects Page
22+
// Projects Page
2323
export const PROJECTS: Page = {
2424
TITLE: "Projects",
2525
DESCRIPTION: "Recent projects I have worked on.",
26-
}
26+
};
2727

2828
// Search Page
2929
export const SEARCH: Page = {
3030
TITLE: "Search",
3131
DESCRIPTION: "Search all posts and projects by keyword.",
32-
}
32+
};
3333

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

5454
// Socials
5555
export const SOCIALS: Socials = [
56-
{
56+
{
5757
NAME: "Email",
58-
ICON: "email",
59-
60-
HREF: "mailto:[email protected]",
58+
ICON: "email",
59+
60+
HREF: "mailto:[email protected]",
6161
},
62-
{
62+
{
6363
NAME: "Github",
6464
ICON: "github",
65-
TEXT: "markhorn-dev",
66-
HREF: "https://github.com/markhorn-dev/astro-sphere"
65+
TEXT: "ggteixeira",
66+
HREF: "https://github.com/ggteixeira",
6767
},
68-
{
68+
{
6969
NAME: "LinkedIn",
7070
ICON: "linkedin",
71-
TEXT: "markhorn-dev",
72-
HREF: "https://www.linkedin.com/in/markhorn-dev/",
71+
TEXT: "guiatf",
72+
HREF: "https://www.linkedin.com/in/guiatf/",
7373
},
74-
{
75-
NAME: "Twitter",
76-
ICON: "twitter-x",
77-
TEXT: "markhorn_dev",
78-
HREF: "https://twitter.com/markhorn_dev",
74+
{
75+
NAME: "Bluesky",
76+
ICON: "bluesky",
77+
TEXT: "guiteixeira.dev",
78+
HREF: "https://bsky.app/profile/guiteixeira.dev",
7979
},
80-
]
81-
80+
];

src/pages/index.astro

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,14 @@ 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, I am ...
83+
Hello, my name is
8484
</p>
8585
<p class='animated text-2xl md:text-3xl lg:text-4xl font-bold uppercase text-black dark:text-white'>
86-
Astro Sphere
86+
Guilherme Teixeira
8787
</p>
8888
<p class='animated text-sm md:text-base lg:text-lg opacity-75'>
89-
Currently designing products for humans.
89+
<!-- Currently designing products for humans. -->
90+
and I am a software developer
9091
</p>
9192
<div id="ctaButtons" class='animated flex flex-wrap gap-4 justify-center mt-5'>
9293
<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'>

0 commit comments

Comments
 (0)