-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from asusoda/Organize-Files
Organized Files
- Loading branch information
Showing
18 changed files
with
175 additions
and
119 deletions.
There are no files selected for viewing
File renamed without changes.
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 was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
src/components/AllRightsReserved.tsx → src/components/Footer/CopyrightsNotice.tsx
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,19 @@ | ||
import HorizontalLine from "../HorizontalLine"; | ||
import { LeftFooterGrid } from "./LeftFooterGrid"; | ||
import RightFooterGrid from "./RightFooterGrid"; | ||
import { MiddleFooterGrid } from "./MiddleFooterGrid"; | ||
import { AllRightsReserved } from "./CopyrightsNotice"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer> | ||
<HorizontalLine /> | ||
<main className="footer-container"> | ||
<LeftFooterGrid /> | ||
<MiddleFooterGrid /> | ||
<RightFooterGrid /> | ||
</main> | ||
<AllRightsReserved /> | ||
</footer> | ||
); | ||
} |
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,14 @@ | ||
import SocialMediaLinks from "../SocialMediaLinks"; | ||
|
||
export function LeftFooterGrid() { | ||
return ( | ||
<section className="col-span-2 max-md:col-span-2 max-md:p-2"> | ||
<div className="flex flex-col max-md:flex-row justify-between h-full"> | ||
<div className="flex gap-3 items-center max-sm:flex-row max-sm:items-center max-sm:hidden"> | ||
<img src="/logo/soda-logo-white.png" className="w-6" /> | ||
<span className="text-soda-gray">THESODA.IO - Since 2017</span> | ||
</div> | ||
</div> | ||
</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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
const organization = [ | ||
{ | ||
name: "Get Involved", | ||
source: "https://asu.campuslabs.com/engage/organization/soda", | ||
}, | ||
{ | ||
name: "Projects", | ||
source: "https://github.com/orgs/asusoda/repositories", | ||
}, | ||
{ | ||
name: "News", | ||
source: "https://asu.campuslabs.com/engage/organization/soda/news", | ||
}, | ||
{ | ||
name: "Gallery", | ||
source: "https://asu.campuslabs.com/engage/organization/soda/gallery", | ||
}, | ||
]; | ||
|
||
export function MiddleFooterGrid() { | ||
return ( | ||
<section className="grid grid-rows-3 gap-2"> | ||
<h5 className="text-soda-white text-[16px] ">Organization</h5> | ||
{organization.map((el, i) => ( | ||
<a href={el.source} key={i}> | ||
<p className="text-soda-gray hover:text-soda-white text-[16px]"> | ||
{el.name} | ||
</p> | ||
</a> | ||
))} | ||
</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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
const resources = [ | ||
{ | ||
name: "Contact", | ||
source: "https://asu.campuslabs.com/engage/organization/soda", | ||
}, | ||
{ | ||
name: "Constitution", | ||
source: | ||
"https://docs.google.com/document/d/1VZmeN7BdD3D1mjQtc5td02BwbOCKrsivLQeMkF-y_1g/edit", | ||
}, | ||
{ | ||
name: "Privacy & Policy", | ||
source: "/", | ||
}, | ||
]; | ||
|
||
export default function RightFooterGrid() { | ||
return ( | ||
<section className="grid grid-rows-3 gap-1"> | ||
<h5 className="text-soda-white text-[16px]">Resources</h5> | ||
{resources.map((el, i) => ( | ||
<a href={el.source} key={i}> | ||
<p className="text-soda-gray text-[16px] hover:text-soda-white"> | ||
{el.name} | ||
</p> | ||
</a> | ||
))} | ||
</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
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,19 @@ | ||
export interface Contacts { | ||
advisors: TeamMember[]; | ||
teams: Teams; | ||
} | ||
|
||
export type TeamMember = { | ||
name: string; | ||
role: string; | ||
email: string; | ||
image: string; | ||
}; | ||
|
||
export type Teams = { | ||
[team: string]: TeamMember[]; | ||
}; | ||
|
||
export interface MemberCardsProps { | ||
contacts: Contacts; | ||
} |
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
File renamed without changes.
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
Oops, something went wrong.