-
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 #18 from mctekk/feat/MR-20
Feat/mr 20
- Loading branch information
Showing
53 changed files
with
6,251 additions
and
90 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,22 @@ | ||
import React from "react"; | ||
import Header from "@/components/organism/header"; | ||
import { Footer } from "@/components/organism/sections/footer"; | ||
import { AboutUsHero } from "@/components/organism/sections/about-us/about-us-hero"; | ||
import { AboutUsOurTeam } from "@/components/organism/sections/about-us/our-team"; | ||
import { AboutUsTeam } from "@/components/organism/sections/about-us/team-members"; | ||
import { GA } from "@/components/atoms/analitiycs"; | ||
import { aboutUsData } from "@/model/api/about-us/data"; | ||
import { ourTeamData } from "@/model/api/our-team/data"; | ||
import { aboutTeamData } from "@/model/api/about-us-team/data"; | ||
export default function page() { | ||
return ( | ||
<> | ||
<Header></Header> | ||
<GA/> | ||
<AboutUsHero data={aboutUsData}></AboutUsHero> | ||
<AboutUsOurTeam data={ourTeamData}></AboutUsOurTeam> | ||
<AboutUsTeam data={aboutTeamData}></AboutUsTeam> | ||
<Footer kind="dark"></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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { Footer } from "@/components/organism/sections/footer"; | ||
import Header from "@/components/organism/header"; | ||
import { GA } from "@/components/atoms/analitiycs"; | ||
import Info from "@/components/organism/sections/privacy-policy/info"; | ||
|
||
function PrivacyPolicy() { | ||
return ( | ||
<> | ||
<GA /> | ||
<Header/> | ||
<Info/> | ||
<Footer kind="dark" /> | ||
</> | ||
); | ||
} | ||
|
||
export default PrivacyPolicy; |
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,16 @@ | ||
import React from "react"; | ||
import Header from "@/components/organism/header"; | ||
import { Footer } from "@/components/organism/sections/footer"; | ||
import Terms from "@/components/organism/sections/terms-of-service/terms"; | ||
|
||
function TermsAndService() { | ||
return ( | ||
<div > | ||
<Header/> | ||
<Terms/> | ||
<Footer kind="dark" /> | ||
</div> | ||
); | ||
} | ||
|
||
export default TermsAndService; |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import Script from 'next/script'; | ||
|
||
|
||
export function GA () { | ||
return ( | ||
<> | ||
<Script src='https://www.googletagmanager.com/gtag/js?id=G-YXW1Y5B8CM' strategy="afterInteractive"></Script> | ||
<Script id="google-analytics" strategy="afterInteractive"> | ||
{` | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
gtag('config', 'G-YXW1Y5B8CM'); | ||
`} | ||
</Script> | ||
</> | ||
) | ||
} |
2,705 changes: 2,705 additions & 0 deletions
2,705
src/components/atoms/animations/world-map/index.tsx
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,55 @@ | ||
import React from 'react' | ||
import { DashedAnimation } from '../animations/animatedTriangle' | ||
import { IconBox } from '../icon-box' | ||
import { useProgressWithInView } from '@/model/interactions/use-progress-in-view' | ||
import React from "react"; | ||
import { DashedAnimation } from "../animations/animatedTriangle"; | ||
import { IconBox } from "../icon-box"; | ||
import { useProgressWithInView } from "@/model/interactions/use-progress-in-view"; | ||
|
||
type Props = {} | ||
type Props = {}; | ||
|
||
export default function BenefitsTriangle({}: Props) { | ||
const { | ||
isActive, | ||
clickOnIcon, | ||
currentStatus, | ||
progressLeft, | ||
|
||
} = useProgressWithInView(); | ||
const { isActive, currentStatus, progressLeft, } = | ||
useProgressWithInView(); | ||
return ( | ||
<div className="md:w-1/2 w-full md:h-full pt-12 relative flex items-center justify-center"> | ||
<div className="flex-col gap-6 md:gap-0 items-center justify-center flex max-w-sm relative w-full"> | ||
<DashedAnimation active={currentStatus.current} /> | ||
<div className="flex items-center h-fit w-full justify-center md:px-16 md:justify-start"> | ||
<IconBox | ||
text="Business" | ||
icon="/images/Business_Icon.svg" | ||
isActive={isActive(0)} | ||
onClick={clickOnIcon(0, 1)} | ||
progress={progressLeft} | ||
/> | ||
</div> | ||
<div className="flex-col gap-6 md:gap-0 items-center justify-center flex max-w-sm relative w-full"> | ||
<DashedAnimation active={currentStatus.current} /> | ||
<div className="flex items-center h-fit w-full justify-center md:px-16 md:justify-start cursor-not-allowed"> | ||
<IconBox | ||
text="Business" | ||
className="cursor-default" | ||
icon="/images/Business_Icon.svg" | ||
isActive={isActive(0)} | ||
progress={progressLeft} | ||
/> | ||
</div> | ||
|
||
<div className="flex items-center h-fit w-full justify-between px-12 md:justify-end"> | ||
<IconBox | ||
text="Salespeople" | ||
icon="/images/SA_Sales_Icon.svg" | ||
isActive={isActive(1)} | ||
onClick={clickOnIcon(1, 168)} | ||
className="order-2 md:order-1" | ||
progress={progressLeft} | ||
/> | ||
<div className="flex items-center h-fit w-full justify-between px-12 md:justify-end"> | ||
<IconBox | ||
text="Salespeople" | ||
icon="/images/SA_Sales_Icon.svg" | ||
isActive={isActive(1)} | ||
className="order-2 md:order-1 cursor-default" | ||
progress={progressLeft} | ||
/> | ||
|
||
<IconBox | ||
text="Customer" | ||
icon="/images/SA_Customer_Icon.svg" | ||
className="md:hidden " | ||
isActive={isActive(2)} | ||
onClick={clickOnIcon(2, 373)} | ||
progress={progressLeft} | ||
/> | ||
</div> | ||
<IconBox | ||
text="Customer" | ||
icon="/images/SA_Customer_Icon.svg" | ||
className="md:hidden cursor-default" | ||
isActive={isActive(2)} | ||
progress={progressLeft} | ||
/> | ||
</div> | ||
|
||
<div className="w-full flex items-center "> | ||
<IconBox | ||
text="Customer" | ||
icon="/images/SA_Customer_Icon.svg" | ||
className="hidden md:flex md:flex-col" | ||
isActive={isActive(2)} | ||
onClick={clickOnIcon(2, 373)} | ||
progress={progressLeft} | ||
/> | ||
<div className="w-full flex items-center "> | ||
<IconBox | ||
text="Customer" | ||
icon="/images/SA_Customer_Icon.svg" | ||
className="hidden md:flex md:flex-col cursor-default" | ||
isActive={isActive(2)} | ||
progress={progressLeft} | ||
/> | ||
</div> | ||
</div> | ||
</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
1 change: 1 addition & 0 deletions
1
src/components/atoms/icons/about-us/SA__Everyone is an owner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.