-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Modify Color Palettes - Flesh out footer, about me, and home page
- Loading branch information
1 parent
e21ea29
commit 0425d94
Showing
7 changed files
with
73 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
import Socials from "./Socials.astro"; | ||
--- | ||
<hr> | ||
<Socials /> | ||
<p> Business inquiries: [email protected] </p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
const { platform, username, url } = Astro.props; | ||
--- | ||
|
||
{ | ||
url == null | ||
? <a href={`https://www.${platform}.com/${username}`}>{platform}</a> | ||
: <a href={url}>{platform}</a> | ||
} | ||
|
||
<style> | ||
a { | ||
padding: 0.5rem 1rem; | ||
color: white; | ||
background-color: gray; | ||
text-decoration: none; | ||
} | ||
a:hover, | ||
a:focus { | ||
color: black; | ||
background-color: #9daf95; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
--- | ||
import BaseLayout from '../layouts/BaseLayout.astro'; | ||
import Greeting from "../components/Greeting"; | ||
const pageTitle = "Home Page"; | ||
--- | ||
|
||
<BaseLayout pageTitle={pageTitle}> | ||
<h2>I am not a mod</h2> | ||
<Greeting client:load messages={["Hi", "Hello", "Howdy", "Hey there"]} /> | ||
<p>I'm not actually sure what to put on the home page of such a website. I'll figure this out later.</p> | ||
<h2></h2> | ||
|
||
<p> | ||
This website is intended to serve two main purposes: satisfying a desire for a creative writing outlet, and | ||
also serving as a hub to check up on my recent projects. Hope you enjoy! | ||
</p> | ||
|
||
<p> | ||
Links to my various socials can be found at the bottom of each page. If there's something missing, please feel free | ||
to let me know! My dms are open pretty much anywhere, but the easiest way to reach me will be through discord or | ||
email. | ||
</p> | ||
</BaseLayout> |