Skip to content
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
6 changes: 6 additions & 0 deletions .env.local.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Supabase
NEXT_PUBLIC_SUPABASE_URL="YOUR_SUPABASE_PROJECT_URL"
NEXT_PUBLIC_SUPABASE_ANON_KEY="YOUR_SUPABASE_ANON_KEY"

# Resend (Email Service)
RESEND_API_KEY="YOUR_RESEND_API_KEY"
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"supabase:types": "supabase gen types typescript > src/types/supabase.ts"
},
"dependencies": {
"@react-email/components": "^1.0.8",
"@react-email/render": "^2.0.4",
"@serwist/next": "^9.5.6",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.39.0",
Expand All @@ -20,7 +22,9 @@
"lucide-react": "^0.575.0",
"next": "16.1.6",
"react": "19.2.3",
"react-colorful": "^5.6.1",
"react-dom": "19.2.3",
"resend": "^6.9.2",
"serwist": "^9.5.6",
"tailwind-merge": "^2.2.1"
},
Expand Down
477 changes: 477 additions & 0 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions src/app/(app)/account/page.tsx
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
import React from "react";
import { User, Settings } from "lucide-react";
import { Settings } from "lucide-react";
import { PageHeader } from "@/components/ui/PageHeader";

export default function AccountPage() {
return (
<div className="flex flex-col justify-start w-full max-w-5xl mx-auto p-6 md:p-12">
<div className="mb-10">
<h1 className="text-3xl md:text-4xl font-bold tracking-tight text-zinc-50 mb-2">Sua Conta</h1>
<p className="text-zinc-400 text-lg">Gerencie suas informações, preferências e assinatura.</p>
</div>
<div className="relative min-h-[calc(100vh-64px)] w-full pb-32 flex flex-col">
<PageHeader title="Sua Conta" subtitle="Gerencie suas informações, preferências e assinatura" />

<div className="p-12 bg-zinc-900/50 backdrop-blur-xl border border-white/5 shadow-2xl rounded-3xl w-full flex flex-col items-center justify-center text-center">
<div className="w-16 h-16 rounded-2xl bg-indigo-500/10 flex items-center justify-center mb-6 border border-indigo-500/20">
<Settings className="w-8 h-8 text-indigo-400" />
</div>
<div className="flex-1 flex flex-col items-center justify-center w-full max-w-4xl mx-auto text-center mt-12">
<div className="flex flex-col items-center justify-center p-12 bg-zinc-900/50 backdrop-blur-xl border border-white/5 shadow-2xl rounded-3xl w-full max-w-2xl mt-12">
<div className="w-20 h-20 rounded-2xl bg-indigo-500/10 flex items-center justify-center mb-8 border border-indigo-500/20">
<Settings className="w-10 h-10 text-indigo-400" />
</div>

<h2 className="text-2xl font-semibold text-zinc-50 mb-3">Configurações</h2>
<h2 className="text-3xl md:text-4xl font-bold tracking-tight text-zinc-50 mb-4">Configurações</h2>

<p className="text-zinc-400 max-w-md mx-auto mb-6">
Módulo de gerenciamento e configurações da conta em construção.
</p>
<p className="text-zinc-400 text-lg max-w-md mx-auto mb-8">
Módulo de gerenciamento e configurações da conta em construção.
</p>

<div className="inline-flex items-center justify-center rounded-full bg-indigo-500/10 px-4 py-1.5 text-sm font-medium text-indigo-400 border border-indigo-500/20">
<span className="relative flex h-2 w-2 mr-2">
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-indigo-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-indigo-500"></span>
</span>
Em desenvolvimento
<div className="inline-flex items-center justify-center rounded-full bg-indigo-500/10 px-4 py-1.5 text-sm font-medium text-indigo-400 border border-indigo-500/20">
<span className="relative flex h-2 w-2 mr-2">
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-indigo-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-indigo-500"></span>
</span>
Em desenvolvimento
</div>
</div>
</div>
</div>
Expand Down
Loading
Loading