-
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
Showing
20 changed files
with
479 additions
and
218 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,45 @@ | ||
"use client"; | ||
|
||
import { motion, Variants } from "framer-motion"; | ||
|
||
import { LetsWorkTogether } from "@/components/LetsWorkTogether"; | ||
|
||
const variants: Variants = { | ||
offscreen: { | ||
y: 10, | ||
opacity: 0, | ||
}, | ||
onscreen: { | ||
y: 0, | ||
opacity: 1, | ||
transition: { | ||
type: "spring", | ||
duration: 1, | ||
}, | ||
}, | ||
}; | ||
|
||
export const Contact = () => { | ||
return ( | ||
<motion.div | ||
className="bg-black w-full flex flex-col lg:flex-row container-x-padding pt-28 lg:pt-24 pb-12 lg:pb-24 mx-auto gap-12 lg:gap-64 text-left" | ||
initial="offscreen" | ||
whileInView="onscreen" | ||
viewport={{ once: true, amount: 0.7 }} | ||
transition={{ staggerChildren: 0.6 }} | ||
> | ||
<motion.div | ||
variants={variants} | ||
className="w-full lg:w-1/2 text-2xl lg:text-4xl lg:leading-[2.9rem] font-light text-primary" | ||
> | ||
Art Direction, Branding, Campaign Strategy, Digital, Identity, Label | ||
design, Packaging, Print, Social Media, Online Strategy, Web Design, | ||
Interior Branding and Visualisation, Book Design. | ||
</motion.div> | ||
|
||
<motion.div variants={variants} className="flex-1"> | ||
<LetsWorkTogether /> | ||
</motion.div> | ||
</motion.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
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.