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

Staging to Main: Homepage REVAMP #289

Merged
merged 34 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1269e65
fix: update style.css to set home_bg.png as the background
rohann06 Sep 6, 2024
f6cd775
build: created the new hero section
rohann06 Sep 6, 2024
f504eea
fix: added the dev icon at the end of the heading
rohann06 Sep 6, 2024
d687aa1
fix: enabled scrollable background image
rohann06 Sep 6, 2024
7acae38
build: created the banner section
rohann06 Sep 6, 2024
eab4fc0
fix: updated the hero section text and edited the learn web3 banner
rohann06 Sep 6, 2024
c6fc414
fix: edited the partner with d_d banner
rohann06 Sep 6, 2024
9ea504a
fix: changed the opacity of both banners
rohann06 Sep 6, 2024
88beefd
fix: edited the footer
rohann06 Sep 6, 2024
02c15fc
fix: added the margin left to social icons
rohann06 Sep 6, 2024
4075710
fix: changed the navigation bar
rohann06 Sep 6, 2024
15006bd
fix: changed the border of both banners
rohann06 Sep 9, 2024
cea9204
fix: adjust the banner border gradient
rohann06 Sep 9, 2024
9b22b70
fix: changed the icon and added the href link in posts nav option
rohann06 Sep 10, 2024
c3d1ffd
fix: made nav bar responsive
rohann06 Sep 10, 2024
7dabf4d
fix: made hero section responsive
rohann06 Sep 10, 2024
d572cc6
fix: made banner section responsive
rohann06 Sep 10, 2024
95ff877
fix: made footer responsive
rohann06 Sep 10, 2024
31f4e6c
fix: made a few minor adjustments
rohann06 Sep 12, 2024
2d77c7b
fix: changed the description from developer DAO to DeveloperDAO
rohann06 Sep 14, 2024
41c0985
fix: top bar is only visible on home page tracks page and fundamental…
rohann06 Sep 14, 2024
6cf5fa3
fix: adjusted the z index of the academy logo to ensure visibility an…
rohann06 Sep 14, 2024
5b86f1b
fix: changed the styling of body and nav bar
rohann06 Sep 16, 2024
164483c
fix: removed the top margin from the tracks and lesson page
rohann06 Sep 16, 2024
ae3d367
fix: increased the hero section text top padding
rohann06 Sep 16, 2024
6a5ba55
fix: background image issue fixed
rohann06 Sep 16, 2024
90a3265
fix: mobile view of tracks page fixed
rohann06 Sep 18, 2024
5a29147
fix: changed the border of the card of tracks and fundamentals page
rohann06 Sep 18, 2024
b37d6f9
fix: footer position issue is resolved
rohann06 Sep 19, 2024
b5f3158
fix: back ground image covering whole screen
rohann06 Sep 22, 2024
208612b
fix: trackers lessones background done according to figma file
rohann06 Sep 24, 2024
99b8e42
Merge pull request #282 from rohann06/revamp-landingPage
uma-l Oct 3, 2024
82e4836
Merge branch 'main' of https://github.com/Developer-DAO/academy-turbo…
Markkos89 Oct 3, 2024
6bf29fc
Merge pull request #290 from Developer-DAO/feat/staging-update
Markkos89 Oct 3, 2024
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
fix: trackers lessones background done according to figma file
rohann06 committed Sep 24, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 208612b38c2518949607c472088884b5a93e476e
2 changes: 1 addition & 1 deletion apps/academy/src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ const PageHeader: FunctionComponent = () => {
</div>
) : (
<div className="flex items-center justify-around gap-36 text-white lg:flex lg:justify-between lg:gap-5 lg:self-stretch">
<div className="lg:items-stretch9 lg:ml-8 lg:flex lg:basis-[0%] lg:flex-col">
<div className="lg:ml-8 lg:flex lg:basis-[0%] lg:flex-col lg:items-stretch">
<BackButton />
</div>
</div>
2 changes: 1 addition & 1 deletion apps/academy/src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ const Home: NextPageWithLayout = () => {
return (
<>
{/* Background with Overlay */}
<div className="relative overflow-hidden">
<div className="relative overflow-hidden bg-[url('/bg_home.png')] bg-cover bg-center bg-no-repeat">
{/* Overlay */}
<div className="absolute inset-0 z-10 w-screen bg-black opacity-50"></div>

8 changes: 4 additions & 4 deletions apps/academy/src/styles.css
Original file line number Diff line number Diff line change
@@ -14,10 +14,10 @@ body {
padding: 0;
min-height: 100vh;
width: 100%;
background-image: url("/bg_home.png");
background-size: cover; /* Ensure the image covers the entire page */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent the image from repeating */
/* background-image: url("/bg_home.png"); */
/* background-size: cover; Ensure the image covers the entire page */
/* background-position: center; Center the image */
/* background-repeat: no-repeat; Prevent the image from repeating */
position: relative; /* Ensure child elements are positioned relative to body */
overflow-x: hidden;
}