-
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.
add wip privacy policy and terms and conditions
- Loading branch information
1 parent
4ddfb8e
commit e93c787
Showing
6 changed files
with
1,395 additions
and
19 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
experimentalTernaries: true | ||
semi: false | ||
singleQuote: true | ||
printWidth: 140 |
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,48 +1,58 @@ | ||
// import { FacebookIcon } from '../assets/icons/FacebookIcon' | ||
// import { InstagramIcon } from "../assets/icons/InstagramIcon"; | ||
import { CodeGenieLogo } from '../assets/logos/CodeGenieLogo' | ||
import { TwitterIcon } from '../assets/icons/TwitterIcon' | ||
import { GithubIcon } from '../assets/icons/GithubIcon' | ||
import { DiscordIcon } from '../assets/icons/DiscordIcon' | ||
|
||
const footerData = [ | ||
{ | ||
title: 'Products', | ||
items: ['Services', 'About Us', 'News and Stories', 'Roadmap'], | ||
items: [ | ||
{ | ||
title: 'Serverless Express', | ||
href: 'https://github.com/CodeGenieApp/serverless-express', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Important Links', | ||
items: [ | ||
'Organization Team', | ||
'Our Journeys', | ||
'Pricing Plans', | ||
'Roadmap', | ||
'Terms & Conditions', | ||
'Privacy Policy', | ||
{ | ||
title: 'Terms & Conditions', | ||
href: '/terms-and-conditions', | ||
}, | ||
{ | ||
title: 'Privacy Policy', | ||
href: '/privacy-policy', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Company', | ||
items: ['About Us', 'Jobs', 'Press', 'Contact Us'], | ||
items: [ | ||
{ | ||
title: 'Contact Us', | ||
href: 'mailto:[email protected]', | ||
}, | ||
], | ||
}, | ||
] | ||
|
||
export const Footer = () => { | ||
return ( | ||
<footer> | ||
<div className="py-5 bg-customDarkBg1 radius-for-skewed "> | ||
<div className="pt-10 lg:pt-20 lg:pb-12 bg-customDarkBg1 radius-for-skewed "> | ||
<div className="container mx-auto px-4 w-4/5 md:w-11/12 lg:w-10/12 xl:w-4/5 2xl:w-2/3"> | ||
<div className="flex flex-wrap"> | ||
<div className="w-full flex justify-center mb-5"> | ||
<div className="w-full lg:w-1/3 mb-16 lg:mb-0"> | ||
<div className="flex justify-center lg:justify-start items-center grow basis-0"> | ||
<div className="text-white mr-2 text-6xl"> | ||
<CodeGenieLogo /> | ||
</div> | ||
<div className="text-white font-['Inter'] font-bold text-xl"> | ||
Code Genie | ||
</div> | ||
<div className="text-white font-['Inter'] font-bold text-xl">Code Genie</div> | ||
</div> | ||
<div> | ||
<p className="mb-10 mt-4 sm:w-[22rem] lg:w-[20rem] xl:w-[24rem] text-gray-400 leading-loose text-center lg:text-left mx-auto lg:mx-0"> | ||
Save months on your next software project | ||
</p> | ||
<div className="w-36 mx-auto lg:mx-0"> | ||
<a | ||
className="inline-block w-10 h-10 mr-2 p-2 bg-customDarkBg2 custom-border-gray hover:bg-gray-700 rounded-xl" | ||
href="https://twitter.com/CodeGenieCodes" | ||
|
@@ -72,9 +82,47 @@ export const Footer = () => { | |
</a> | ||
</div> | ||
</div> | ||
<div className="w-full lg:w-2/3 lg:pl-16 hidden lg:flex flex-wrap justify-between"> | ||
<div className="w-full md:w-1/3 lg:w-auto mb-16 md:mb-0"> | ||
<h3 className="mb-6 text-2xl font-bold text-white">Products</h3> | ||
<ul> | ||
{footerData[0].items.map((item, i) => ( | ||
<li key={i} className="mb-4"> | ||
<a className="text-gray-400 hover:text-gray-300" href={item.href}> | ||
{item.title} | ||
</a> | ||
</li> | ||
))} | ||
</ul> | ||
</div> | ||
<div className="w-full md:w-1/3 lg:w-auto mb-16 md:mb-0"> | ||
<h3 className="mb-6 text-2xl font-bold text-white">Important Links</h3> | ||
<ul> | ||
{footerData[1].items.map((item, i) => ( | ||
<li key={i} className="mb-4"> | ||
<a className="text-gray-400 hover:text-gray-300" href={item.href}> | ||
{item.title} | ||
</a> | ||
</li> | ||
))} | ||
</ul> | ||
</div> | ||
<div className="w-full md:w-1/3 lg:w-auto"> | ||
<h3 className="mb-6 text-2xl font-bold text-white">Company</h3> | ||
<ul> | ||
{footerData[2].items.map((item, i) => ( | ||
<li key={i} className="mb-4"> | ||
<a className="text-gray-400 hover:text-gray-300" href={item.href}> | ||
{item.title} | ||
</a> | ||
</li> | ||
))} | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<p className="lg:text-center text-sm text-gray-400 border-t border-[rgb(255,255,255,0.2)] pt-2 hidden lg:block"> | ||
© 2023. Code Genie. | ||
<p className="lg:text-center text-sm text-gray-400 border-t border-[rgb(255,255,255,0.2)] pt-12 mt-16 hidden lg:block"> | ||
© 2024. Code Genie. | ||
</p> | ||
</div> | ||
</div> | ||
|
Oops, something went wrong.