-
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.
- Loading branch information
1 parent
cd74c9e
commit 13f635f
Showing
7 changed files
with
51 additions
and
36 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
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
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 |
---|---|---|
|
@@ -6,26 +6,35 @@ import BaseLayout from '../layouts/base.astro' | |
import Join from '../components/join.astro' | ||
import { linksPageLinks } from '../data' | ||
--- | ||
<BaseLayout> | ||
<div class="main-container" style="padding-top: 120px; display: flex; background: linear-gradient(#230508 70%, var(--text-dark));"> | ||
<div class="links-container" style=" margin: auto; max-width: 30em; width: 100%"> | ||
<div style=" width: 100%; padding: 20px; border-radius: 25px; border-style: solid; margin: 30px; border-color: #380D0D; background-color: #250F0F;"> | ||
<h2>Email</h2> | ||
<p> | ||
For general inquiries, reach out to our leadership team via email. | ||
</p> | ||
<a>[email protected]</a> | ||
|
||
<BaseLayout title="Links"> | ||
<div | ||
class="main-container" | ||
style="padding-top: 120px; display: flex; background: linear-gradient(#230508 70%, var(--text-dark));" | ||
> | ||
<div | ||
class="links-container" | ||
style=" margin: auto; max-width: 30em; width: 100%" | ||
> | ||
<div | ||
style=" width: 100%; padding: 20px; border-radius: 25px; border-style: solid; margin: 30px; border-color: #380D0D; background-color: #250F0F;" | ||
> | ||
<h2>Email</h2> | ||
<p> | ||
For general inquiries, reach out to our leadership team via email. | ||
</p> | ||
<a>[email protected]</a> | ||
</div> | ||
{ | ||
linksPageLinks.map((link) => ( | ||
<a href={link.href}> | ||
<div style=" width: 100%; padding: 20px; border-radius: 25px; border-style: solid; margin: 30px;"> | ||
<h2>{link.name}</h2> | ||
</div> | ||
{ | ||
linksPageLinks.map((link) => ( | ||
<a href={link.href}> | ||
<div style=" width: 100%; padding: 20px; border-radius: 25px; border-style: solid; margin: 30px;"> | ||
<h2>{link.name}</h2> | ||
</div> | ||
</a> | ||
)) | ||
} | ||
</div> | ||
</a> | ||
)) | ||
} | ||
</div> | ||
<Join theme='dark'/> | ||
</div> | ||
<Join theme="dark" /> | ||
</BaseLayout> |
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