-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c78ed6b
commit d665736
Showing
8 changed files
with
69 additions
and
147 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,29 +1,60 @@ | ||
import Link from "next/link" | ||
import Image from "next/image" | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer className="w-full bg-[#1B75BA] text-white py-8"> | ||
<div className="container mx-auto px-6"> | ||
<div className="flex flex-col md:flex-row justify-between items-center"> | ||
<div className="mb-4 md:mb-0"> | ||
<p> | ||
© {new Date().getFullYear()} Digitalization Support Hub. All | ||
rights reserved. | ||
</p> | ||
</div> | ||
<div className="flex space-x-4"> | ||
<Link href="#" className="hover:text-blue-400"> | ||
<footer className="bg-gray-50 py-8"> | ||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | ||
<div className="flex flex-wrap justify-between items-center mb-12"> | ||
<Link href="/" className="text-xl font-bold text-[#1B75BA]"> | ||
Digitalization Support Hub | ||
</Link> | ||
<nav className="flex space-x-6"> | ||
<Link href="#" className="text-gray-600 hover:text-gray-900"> | ||
Privacy Policy | ||
</Link> | ||
<Link href="#" className="hover:text-blue-400"> | ||
<Link href="#" className="text-gray-600 hover:text-gray-900"> | ||
Terms of Service | ||
</Link> | ||
<Link href="#" className="hover:text-blue-400"> | ||
<Link href="#" className="text-gray-600 hover:text-gray-900"> | ||
Contact Us | ||
</Link> | ||
</nav> | ||
</div> | ||
|
||
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12"> | ||
<div> | ||
<p className="text-gray-600 mb-4">Made by:</p> | ||
<div className="flex items-center gap-8"> | ||
<Image src="/supporter1.png" width={120} height={40} alt="EnAccess logo" /> | ||
<Image src="/supporter1.png" width={120} height={40} alt="GET.invest logo" /> | ||
</div> | ||
</div> | ||
<div className="flex flex-col items-start md:items-end"> | ||
<p className="text-gray-600 mb-4">Funded by:</p> | ||
<Image | ||
src="/supporter1.png" | ||
width={180} | ||
height={50} | ||
alt="Good Energies Foundation logo" | ||
/> | ||
</div> | ||
</div> | ||
|
||
<div className="mb-12"> | ||
<p className="text-gray-600 mb-4">Other supporters:</p> | ||
<div className="flex justify-center gap-8"> | ||
<Image src="/supporter1.png" width={100} height={30} alt="Supporter 1 logo" /> | ||
<Image src="/supporter1.png" width={100} height={30} alt="Supporter 2 logo" /> | ||
<Image src="/supporter1.png" width={100} height={30} alt="Supporter 3 logo" /> | ||
</div> | ||
</div> | ||
|
||
<div className="text-center text-gray-600 text-sm"> | ||
© {new Date().getFullYear()} Digitalization Support Hub. All rights reserved. | ||
</div> | ||
</div> | ||
</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
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.
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 |
---|---|---|
@@ -1,25 +1,19 @@ | ||
import Header from "./components/Header" | ||
import Hero from "./components/Hero" | ||
import Context from "./components/Context" | ||
import Challenges from "./components/Challenges" | ||
import Solutions from "./components/Solutions" | ||
import Impact from "./components/Impact" | ||
import Participation from "./components/Participation" | ||
import Timeline from "./components/Timeline" | ||
import Footer from "./components/Footer" | ||
|
||
export default function Page() { | ||
return ( | ||
<main className="flex min-h-screen flex-col items-center justify-between"> | ||
<Header /> | ||
<Hero /> | ||
<Context /> | ||
<Challenges /> | ||
<Solutions /> | ||
<Impact /> | ||
<Participation /> | ||
<Timeline /> | ||
<Footer /> | ||
</main> | ||
) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.