-
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
4a9e0eb
commit 97837f1
Showing
12 changed files
with
110 additions
and
57 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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
<section class="bg-white pt-32 pr-16 pb-16 pl-16"> | ||
--- | ||
const { class: className, ...rest } = Astro.props | ||
--- | ||
|
||
<section class={ className } { ...rest }> | ||
<slot /> | ||
</section> |
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,6 +1,7 @@ | ||
--- | ||
const logoSrc = "/images/logo.png" | ||
const altText = "Red Innovation Logo" | ||
const { class: className, ...rest } = Astro.props | ||
--- | ||
|
||
<img class="w-48 h-48" src={logoSrc} alt={altText} /> | ||
<div class={ className }> | ||
<img class="w-48 h-48" { ...rest } /> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
html { | ||
@apply bg-neutral !important; | ||
@apply text-primary !important; | ||
} | ||
|
||
body { | ||
@apply grid !important; | ||
@apply min-h-screen !important; | ||
@apply place-items-center !important; | ||
} | ||
|
||
main { | ||
@apply m-8 !important; | ||
@apply max-w-4xl !important; | ||
@apply text-left !important; | ||
} |
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,34 @@ | ||
@font-face { | ||
font-family: 'AkzidenzGrotesk'; | ||
font-style: normal; | ||
font-weight: 300; | ||
src: url('/public/fonts/AkzidenzGrotesk-300.otf') format('opentype'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'AkzidenzGrotesk'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('/public/fonts/AkzidenzGrotesk-400.otf') format('opentype'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'AkzidenzGrotesk'; | ||
font-style: normal; | ||
font-weight: 500; | ||
src: url('/public/fonts/AkzidenzGrotesk-500.otf') format('opentype'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'AkzidenzGrotesk'; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: url('/public/fonts/AkzidenzGrotesk-700.otf') format('opentype'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'AkzidenzGrotesk'; | ||
font-style: normal; | ||
font-weight: 900; | ||
src: url('/public/fonts/AkzidenzGrotesk-900.otf') format('opentype'); | ||
} |
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,4 @@ | ||
.hero { | ||
@apply bg-white; | ||
@apply pt-32 pr-16 pb-16 pl-16; | ||
} |
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,4 @@ | ||
.logo { | ||
@apply -mb-24; | ||
@apply pt-16 pr-16 pl-16; | ||
} |
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,18 @@ | ||
h1 { | ||
@apply mb-4 !important; | ||
@apply text-5xl !important; | ||
@apply font-black !important; | ||
} | ||
|
||
h2 { | ||
@apply mb-2 !important; | ||
@apply text-2xl !important; | ||
@apply font-bold !important; | ||
@apply text-secondary !important; | ||
} | ||
|
||
p { | ||
@apply text-lg !important; | ||
@apply font-normal !important; | ||
@apply text-primary !important; | ||
} |
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