Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: various landing page components #477

Merged
merged 21 commits into from
Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5d65d8d
refactor: landing page typography
Coyenn Sep 18, 2022
1275a3a
refactor: landing page typography and layout
Coyenn Sep 18, 2022
c7e9cd2
Merge branch 'main' into Coyenn/landing-page-typography-improvements
nexxeln Sep 19, 2022
8f99dd7
Merge branch 'main' into Coyenn/landing-page-typography-improvements
juliusmarminge Sep 19, 2022
501b49e
feat: add swiper to show tweets
Coyenn Sep 19, 2022
49be8e1
refactor: add page section component to landing page
Coyenn Sep 19, 2022
d626214
fix: resolve merge conflicts with main
Coyenn Sep 19, 2022
d7fd899
fix: tweet swiper by switching to react
Coyenn Sep 19, 2022
f17af54
fix: tweet swiper pagination
Coyenn Sep 19, 2022
4517766
refactor: terminal styling
Coyenn Sep 19, 2022
ad952aa
refactor: increase page section padding
Coyenn Sep 19, 2022
58ce42d
Merge branch 'main' into Coyenn/landing-page-typography-improvements
Coyenn Sep 20, 2022
4ffd348
fix: responsiveness of community card
Coyenn Sep 20, 2022
49febb0
Merge branch 'Coyenn/landing-page-typography-improvements' of github.…
Coyenn Sep 20, 2022
54d77cd
fix: responsiveness of cli
Coyenn Sep 20, 2022
fb0d1a9
fix: center content of community card
Coyenn Sep 20, 2022
51bceac
fix: responsiveness of tweet slider
Coyenn Sep 20, 2022
30f1e4f
refactor: borders of sidebars
Coyenn Sep 20, 2022
daf380d
fix: theme toggle button colors
Coyenn Sep 20, 2022
e97d36d
feat: add border to all cards
Coyenn Sep 20, 2022
fff9701
Merge branch 'main' into Coyenn/landing-page-typography-improvements
Coyenn Sep 20, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: increase page section padding
  • Loading branch information
Coyenn committed Sep 19, 2022
commit ad952aa11fb0e698cffc380e1b4bc2f8753dd68d
2 changes: 1 addition & 1 deletion www/src/components/landingPage/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PageSection from "./pageSection.astro";

<PageSection
className="grid grid-cols-1 xl:grid-cols-2 gap-8 items-center mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 lg:grid lg:gap-x-8 xl:gap-x-12"
size={"16"}
size={"24"}
>
<div class="flex flex-col gap-2 md:gap-4 max-w-[800px] xl:max-w-full mx-auto">
<h2 class="text-t3-purple-50 text-center font-bold text-5xl w-full mb-2">
Expand Down
2 changes: 1 addition & 1 deletion www/src/components/landingPage/community/community.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import CommunityCard from "./communityCard.astro";
export interface Props {}
---

<PageSection size={"16"} bottomPadding={false}>
<PageSection size={"24"} bottomPadding={false}>
<div
class="flex flex-col items-center justify-center max-w-7xl text-t3-purple-100 mx-auto px-4 sm:px-6 lg:px-8"
>
Expand Down
2 changes: 1 addition & 1 deletion www/src/components/landingPage/stack/stack.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Feature from "./card.astro";
import NextAuthIcon from "./nextauth.png";
---

<PageSection size={"16"}>
<PageSection size={"24"}>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-t3-purple-100">
<div class="text-center mb-10">
<h2 class="text-2xl font-semibold text-t3-purple-200">
Expand Down
2 changes: 1 addition & 1 deletion www/src/components/landingPage/tweets/tweets.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import TweetSlider from "./tweetSlider";
---

<PageSection
size="12"
size={"24"}
className="grid grid-cols-1 md:grid-cols-2 max-w-7xl mx-auto gap-4 md:gap-10 px-4 sm:px-6 lg:px-8"
>
<div
Expand Down