Skip to content

Commit

Permalink
Merge pull request #1 from Team-ArchItects/groupB
Browse files Browse the repository at this point in the history
Header added footer started
  • Loading branch information
TayKhanTexas authored Dec 5, 2023
2 parents 684afed + 4bd9de6 commit b2484e2
Show file tree
Hide file tree
Showing 12 changed files with 116 additions and 4 deletions.
26 changes: 24 additions & 2 deletions app/components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
import socLogo from "../../images/original.png"
import Image from 'next/image'

export default function Footer() {
return (
<section className="flex width-screen h-4 flex-col items-center justify-between p-24 bg-white">
<p>This is the footer</p>
<section className="flex flex-col gap-4 width-screen h-4 justify-between p-16 bg-navy text-white">
<div className="flex justify-center space-x-2 items-center">
<Image
src={socLogo}
width={150}
height={150}
alt="School of Code logo"
/>
<Image
src={socLogo}
width={150}
height={150}
alt="School of Code logo"
/>
</div>
<div>
<p>This is the contact button</p>
</div>
<div>
<p>This is the copyright notice</p>
</div>
</section>
)
}
68 changes: 66 additions & 2 deletions app/components/Header.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,71 @@
import Image from 'next/image'
import logo from "../../images/[email protected]"
import meetupLogo from "../../images/meetup_white.svg"
import linkedinLogo from "../../images/linkedin_icon_white.svg"
import discordLogo from "../../images/discord_icon_black.svg"
import xingLogo from "../../images/X_logo_2023_(white).png"
import instagramLogo from "../../images/instagram_icon_black.svg"
import githubLogo from "../../images/github-mark-white.png"
import Link from 'next/link'

export default function Header() {
return (
<section className="flex width-screen h-4 flex-col items-center justify-between p-24 bg-white">
<p>This is the header</p>
<section className="grid grid-cols-3 gap-4 place-content-evenly items-center width-screen h-4 justify-between p-8 bg-navy text-white">
<div className="flex justify-start ">
<p>Menu</p>
<p>Page Section</p>
<p>Page Section</p>
</div>
<div className="flex justify-center">
<Image
src={logo}
width={100}
height={100}
alt="Brumai Logo in orange"
/>
</div>
<div className="flex justify-end space-x-2 items-center">
<a href='https://www.meetup.com/brum-ai/' target="_blank" rel="noopener noreferrer">
<Image
src={meetupLogo}
width={25}
height={25}
alt="LinkedIn logo linking to the BRUM AI LinkedIn page"
/>
</a>
<a href='https://www.linkedin.com/company/brumai/' target="_blank" rel="noopener noreferrer">
<Image
src={linkedinLogo}
width={25}
height={25}
alt="meetup logo linking to the BRUM AI meetup page"
/>
</a>
<a href='https://discord.gg/RJSU67kZcJ' target="_blank" rel="noopener noreferrer">
<Image
src={discordLogo}
width={25}
height={25}
alt="Discord logo linking to the BRUM AI discord group"
/>
</a>
<a href='https://x.com/brum_AI' target="_blank" rel="noopener noreferrer">
<Image
src={xingLogo}
width={25}
height={25}
alt="X logo linking to the BRUM AI X page"
/>
</a>
<a href='https://www.linkedin.com/company/brumai/' target="_blank" rel="noopener noreferrer">
<Image
src={instagramLogo}
width={25}
height={25}
alt="Instagram logo linking to the BRUM AI instagram page"
/>
</a>
</div>
</section>
)
}
Binary file added images/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/X_logo_2023_(white).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/discord_icon_black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/eventbrite_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/github-mark-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/instagram_icon_black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions images/linkedin_icon_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/meetup_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/original.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ module.exports = {
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
"navy": "#171D41",
"magenta": "#E708FF",
"citrus": "#FF822E",
"aqua": "#00CCCC",
},
},
},
plugins: [],
Expand Down

0 comments on commit b2484e2

Please sign in to comment.