-
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.
Merge pull request #8 from goinvo/copy-tweaks
Copy tweaks to homepage
- Loading branch information
Showing
6 changed files
with
2,954 additions
and
40 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,22 +1,23 @@ | ||
import Image from 'next/image'; | ||
import Link from 'next/link'; | ||
import React from 'react'; | ||
import FeedbackModal from './FeedbackModal'; | ||
// import FeedbackModal from './FeedbackModal'; | ||
|
||
const columnOneLinks = [ | ||
{ | ||
href: "https://github.com/goinvo/staffplan-next-app", label: "Get Involved" | ||
}, | ||
]; | ||
// const columnOneLinks = [ | ||
// { | ||
// href: "https://github.com/goinvo/staffplan-next-app", label: "Open Source" | ||
// }, | ||
// ]; | ||
|
||
const columnTwoLinks = [ | ||
// { href: "#", label: "Help" }, | ||
{ href: "mailto:[email protected] ", label: "Contact" } | ||
{ href: "mailto:[email protected]?subject=StaffPlan Contact", label: "Contact" }, | ||
{ href: "https://github.com/goinvo/staffplan-next-app", label: "Open Source" } | ||
]; | ||
|
||
const columnThreeLinks = [ | ||
{ href: "https://app.staffplan.com/sign_in", label: "Sign In" }, | ||
{ href: "https://app.staffplan.com/registrations/new", label: "Try for Free" } | ||
{ href: "https://app.staffplan.com/registrations/new", label: "Try StaffPlan" } | ||
]; | ||
|
||
const Footer: React.FC = () => ( | ||
|
@@ -25,18 +26,14 @@ const Footer: React.FC = () => ( | |
<div className="flex flex-col justify-between min-h-[4rem] sm:mb-6 md:mb-0 mr-auto"> | ||
<Image src="/logo.svg" width={174} height={43} alt="staffplan logo" /> | ||
<div className="hidden sm:flex items-end mt-8"> | ||
<Image src="/goinvoLogo.svg" width={98} height={52} alt="GoInvo logo" /> | ||
<Link href="https://goinvo.com/"> | ||
<Image src="/goinvoLogo.svg" width={98} height={52} alt="GoInvo logo" /> | ||
</Link> | ||
<p className="ml-2 self-end text-contrastGrey">© 2024</p> | ||
</div> | ||
</div> | ||
<div className="flex flex-col sm:flex-row sm:justify-center justify-normal sm:space-x-24 space-y-8 sm:space-y-2 text-white mr-auto"> | ||
<div className="flex flex-col space-y-8 sm:mt-2 mt-0"> | ||
{columnOneLinks.map((link, index) => ( | ||
<Link key={index} href={link.href}> | ||
{link.label} | ||
</Link> | ||
))} | ||
<FeedbackModal /> | ||
</div> | ||
<div className="flex flex-col space-y-8"> | ||
{columnTwoLinks.map((link, index) => ( | ||
|
@@ -54,7 +51,9 @@ const Footer: React.FC = () => ( | |
</div> | ||
</div> | ||
<div className="flex sm:hidden items-end mt-4"> | ||
<Image src="/goinvoLogo.svg" width={98} height={52} alt="GoInvo logo" /> | ||
<Link href="https://goinvo.com/"> | ||
<Image src="/goinvoLogo.svg" width={98} height={52} alt="GoInvo logo" /> | ||
</Link> | ||
<p className="ml-2 self-end text-contrastGrey">© 2024</p> | ||
</div> | ||
</div> | ||
|
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
Oops, something went wrong.