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

fix: recomposição da imagem de perfil e ícone do site #42

Merged
merged 1 commit into from
Aug 3, 2024
Merged
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
Binary file removed public/image/404.png
Binary file not shown.
Binary file removed public/image/allyourbase.jpg
Binary file not shown.
Binary file removed public/image/avatar.jpg
Binary file not shown.
11 changes: 0 additions & 11 deletions public/image/backLogo.svg

This file was deleted.

Binary file removed public/image/background-dark.jpg
Binary file not shown.
Binary file removed public/image/background.jpg
Binary file not shown.
Binary file added public/image/foto-perfil.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/image/instalura.png
Binary file not shown.
Binary file removed public/image/internet.jpg
Binary file not shown.
Binary file removed public/image/legolas.jpg
Binary file not shown.
Binary file removed public/image/next-right.png
Binary file not shown.
Binary file removed public/image/otaco.jpg
Binary file not shown.
Binary file removed public/image/quiz.png
Binary file not shown.
Binary file removed public/image/tankcat.jpg
Binary file not shown.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Home() {

<div className="w-full flex justify-center p-0 sm:p-5 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"
src="/image/foto-perfil.jpeg"
alt="Foto de perfil"
className="object-cover h-36 w-32 md:h-64 md:w-56 flex justify-center rounded-lg" />
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/app/providers.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'use client';

import { Box } from '@components/commons/Box';
import Header from '@components/commons/Header';
import { ThemeGlobalApp } from '@components/wrappers/context';
import { ModalProvider } from 'hooks/Modal';
import React from 'react';
import Header from '../components/commons/Header';
import { ThemeGlobalApp } from '../components/wrappers/context';
import { ToastProvider } from '../hooks/Toast';

export function Providers({ children }: { children: React.ReactNode }) {
Expand All @@ -20,4 +20,4 @@ export function Providers({ children }: { children: React.ReactNode }) {
</Box>
</ThemeGlobalApp>
);
}
}
2 changes: 1 addition & 1 deletion src/components/commons/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function Header() {
onClick={() => toggleTheme()}
className={`relative flex justify-around items-center w-[70px] h-[25px] rounded-full transition-all duration-300 ${themeApp === 'dark' ? 'bg-[#4d98fa3f]' : 'bg-[#2c4efa3f]'} md:w-[80px] md:h-[30px] cursor-pointer`}
>
<img src="/image/moon.svg" alt="Ícone Noite" />
<img src="/image/moon.svg" alt="Ícone Lua" />
<button
className={`absolute w-[25px] h-[25px] bg-slate-200 rounded-full transition-all duration-300 border-none ${themeApp === 'light' ? 'ml-[38px] md:ml-[44px]' : 'left-1'} md:w-[26px] md:h-[26px]`}
/>
Expand Down