Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(dashed): Creates component with text and box with dashed. #50

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/carreira/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import IconText from '@/components/IconText';
import contact from '@/assets/image/contact.svg';
import DashedBox from '../components/DashedBox';

export default function Career() {
const data = [
Expand Down Expand Up @@ -35,6 +36,7 @@ export default function Career() {
Se junte a nossa equipe
</h1>
</div>
<DashedBox />
<div className="flex flex-col justify-center items-center mt-24 p-6 gap-16 lg:flex-row lg:flex-wrap xl:flex-nowrap lg:mt-52 lg:gap-8 2xl:max-w-[1300px] 2xl:m-auto">
{data.map((item) => {
return (
Expand Down
45 changes: 45 additions & 0 deletions app/components/DashedBox.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
export default function DashedBox() {
return (
<>
<div className="flex flex-col gap-8 mt-24 p-4 justify-center text-center lg:flex-row lg:mt-48 lg:p-0 lg:gap-16 lg:text-start xl:w-[68rem] xl:max-w-[1300px] xl:m-auto xl:mt-48">
<div className="flex self-center lg:w-[58rem] lg:text-end lg:self-start">
<h1 className="flex text-4xl text-white font-extrabold uppercase lg:text-7xl lg:self-start">
Vem com a gente
</h1>
</div>
<div className="flex flex-col gap-16">
<div className="flex flex-col gap-16 text-start border-2 border-dashed border-gray-500 p-2">
<p className="text-xl lg:text-2xl xl:text-3xl">
Oferecemos um ambiente de trabalho acolhedor para que todos os
membros possam evoluir profissionalmente de forma sustentável e
segura.
</p>
<p className="text-xl lg:text-2xl xl:text-3xl">
Além de ser um ambiente onde é possivel compartilhar sugestões e
críticas do trabalho, fazer parte do Tesseract inclui:
</p>
</div>
<div className="flex justify-center lg:justify-start">
<ul className="flex flex-col gap-4">
<li className="text-xl text-gray font-light lg:text-2xl xl:text-3xl">
Trabalho 100% home office
</li>
<li className="text-xl text-gray font-light lg:text-2xl xl:text-3xl">
Horários flexíveis
</li>
<li className="text-xl text-gray font-light lg:text-2xl xl:text-3xl">
Plano de carreira
</li>
<li className="text-xl text-gray font-light lg:text-2xl xl:text-3xl">
Bonificações semestrais
</li>
<li className="text-xl text-gray font-light lg:text-2xl xl:text-3xl">
Descanso remunerado
</li>
</ul>
</div>
</div>
</div>
</>
);
}