Skip to content

Commit

Permalink
fix: ajuste na responsividade
Browse files Browse the repository at this point in the history
  • Loading branch information
joseallef committed Jun 2, 2024
1 parent 6d19c6f commit 9661fa1
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,27 +1,22 @@
"use client";

import { WrapperMain } from "@components/commons/Main";
import { ThemeApp } from "@components/wrappers/context";
import { useContext } from "react";

export default function Home() {
const { themeApp } = useContext(ThemeApp);
return (
<WrapperMain>
<div className="flex flex-col md:flex-row justify-center items-center h-full md:p-6">
<div className="flex flex-col md:flex-row border border-sky-800 rounded-md">
<div className="flex flex-col p-2 md:p-3 justify-center items-center md:items-start w-full md:w-1/2">
<div className="flex flex-col p-2 md:p-3 justify-center md:justify-between items-center md:items-start w-full md:w-1/2">
<div className="my-4 w-full">
<h2 className="text-center w-full font-bold text-2xl md:text-3xl bg-gradient-to-r from-fuchsia-600 to-purple-800 bg-clip-text text-transparent">
Desenvolvedor Front-end
</h2>
</div>

<div className="w-full flex justify-center">
<div className="w-full flex justify-center p-0 md:p-14 lg:p-0">
<img
src="https://media.licdn.com/dms/image/D4D03AQEh-qNSzAsiJw/profile-displayphoto-shrink_400_400/0/1683594689756?e=1722470400&v=beta&t=llXFmcq_1qv2UtipcLuXu4wKtuebU6gMMn_VG5fRwHo"
alt="Foto de perfil"
className="object-cover lg:w-auto h-32 w-32 xl:h-64 xl:w-56 flex justify-center rounded-lg" />
className="object-cover sm:w-auto h-32 w-32 md:h-64 md:w-56 flex justify-center rounded-lg" />
</div>
</div>

Expand Down

0 comments on commit 9661fa1

Please sign in to comment.