Skip to content

Commit

Permalink
Merge pull request #27 from utadatathon/atiq_dev_branch
Browse files Browse the repository at this point in the history
Atiq dev branch
  • Loading branch information
atiqurx authored Mar 19, 2024
2 parents 6f4f498 + 62871d0 commit d3becde
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/AppHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function AppHeader() {
<ul
className={`${
showMenu ? 'translate-x-0' : '-translate-x-full'
} transform transition-all ease-out duration-300 flex w-6/12 h-screen flex-col bg-customBackground fixed top-0 left-0 z-[-1] mt-[80px] border-t-2 border-customBackground/10`}
} transform transition-all ease-out duration-300 flex w-6/12 h-screen flex-col backdrop-blur-sm bg-customBackground/70 fixed top-0 left-0 z-[-1] mt-[80px] border-t-2 border-customBackground/10`}
>
{dynamicNavItems
.filter(({ text }) => text !== 'Home')
Expand Down
2 changes: 1 addition & 1 deletion components/homeComponents/HomeTeam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function HomeTeam(props: { members: TeamMember[] }) {
<h4 className="font-bold p-6 md:text-4xl text-2xl my-4 text-complementary text-center bg-white bg-clip-text text-transparent">
Meet the Team
</h4>{' '}
<div className="flex flex-wrap justify-center p-4">
<div className="flex flex-wrap justify-center lg:p-4">
<div className="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5">
{/* Member Cards */}
{members.map(
Expand Down
2 changes: 1 addition & 1 deletion components/homeComponents/MemberCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function MemberCards(props) {
}, []);

return (
<div className="md:w-52 w-44 mb-5 md:mx-3 mx-1 flex flex-col items-center justify-center">
<div className="lg:w-52 w-40 mb-5 md:mx-3 mx-1 flex flex-col items-center justify-center">
{/* Profile Image */}
<div className="rounded-full">
<Image
Expand Down
3 changes: 1 addition & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ const withPWA = require('next-pwa')({
(module.exports = withPWA({
reactStrictMode: true,
images: {
domains: ['lh3.googleusercontent.com', 'firebasestorage.googleapis.com'],
unoptimized: true,
domains: ['lh3.googleusercontent.com', 'firebasestorage.googleapis.com']
},

webpack(config, options) {
Expand Down
2 changes: 1 addition & 1 deletion pages/auth/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export default function AuthPage() {
<div className="flex justify-center mt-6 mb-4">
<button
type="button"
className="rounded-full text-base w-full text-white bg-primaryDark hover:brightness-90 px-4 py-2"
className="rounded-full text-base w-full text-white bg-indigo-800 hover:brightness-90 px-4 py-2"
onClick={() => {
sendResetEmail();
setErrorMsg('');
Expand Down

0 comments on commit d3becde

Please sign in to comment.