feat: adicionar estrutura para gerenciamento de mudanças de código

Implementa um sistema para registrar e gerenciar mudanças de código
de forma eficiente. A estrutura permite a adição, remoção e edição
de entradas de mudanças, facilitando o acompanhamento do histórico
de alterações no projeto.
This commit is contained in:
Felipe Coutinho
2025-11-23 12:26:05 -03:00
parent 3ce8541a56
commit 9fbe722d00
420 changed files with 94 additions and 33 deletions

View File

@@ -158,17 +158,14 @@ export default async function Page() {
<section className="py-8 md:py-16">
<div className="container">
<div className="mx-auto max-w-6xl">
<div className="relative rounded-xl border bg-muted/20 shadow-2xl overflow-hidden">
<div className="absolute inset-0 bg-linear-to-t from-background/80 to-transparent z-10 pointer-events-none" />
<Image
src="/dashboard-preview.png"
alt="opensheets Dashboard Preview"
width={1920}
height={1080}
className="w-full h-auto"
priority
/>
</div>
<Image
src="/dashboard-preview.png"
alt="opensheets Dashboard Preview"
width={1920}
height={1080}
className="w-full h-auto"
priority
/>
</div>
</div>
</section>

BIN
app/apple-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 15 KiB

1
app/icon0.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.3 KiB

BIN
app/icon1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -17,6 +17,9 @@ export default function RootLayout({
}>) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<meta name="apple-mobile-web-app-title" content="Opensheets" />
</head>
<body
className={`${main_font.className} antialiased`}
suppressHydrationWarning

21
app/manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "Opensheets",
"short_name": "Opensheets",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#F2ECE7",
"background_color": "#F2ECE7",
"display": "standalone"
}