Skip to content

Commit 185e5ba

Browse files
committed
update
0 parents  commit 185e5ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+13044
-0
lines changed

README.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
2+
# LinkTree de Redes Sociais
3+
4+
## Visão Geral
5+
6+
Este projeto é uma landing page moderna no estilo LinkTree, criada para centralizar e compartilhar links para redes sociais e contatos profissionais. O design segue uma estética tecnológica com fundo escuro e elementos visuais modernos.
7+
8+
## Características
9+
10+
- **Design Moderno**: Interface com tema escuro e elementos geométricos tecnológicos
11+
- **Responsivo**: Adaptável para todos os tamanhos de tela
12+
- **Animações Suaves**: Transições e efeitos visuais para melhor experiência do usuário
13+
- **Perfil Personalizável**: Foto de perfil, nome e descrição profissional
14+
- **Links Sociais**: Conexões para GitHub, LinkedIn, Instagram, Twitter, YouTube, Email, Website e Blog
15+
16+
## Tecnologias Utilizadas
17+
18+
- React
19+
- TypeScript
20+
- Tailwind CSS
21+
- Vite
22+
- Lucide Icons
23+
- Shadcn/UI
24+
25+
## Como Personalizar
26+
27+
Para personalizar este LinkTree com suas próprias informações:
28+
29+
1. Edite o componente `ProfileHeader` com seu nome e título
30+
2. Atualize os links no componente `Index` com URLs para suas redes sociais
31+
3. Adicione sua própria foto de perfil (opcional)
32+
4. Personalize cores e elementos visuais conforme necessário
33+
34+
## Como Executar Localmente
35+
36+
```bash
37+
# Instalar dependências
38+
npm install
39+
40+
# Iniciar servidor de desenvolvimento
41+
npm run dev
42+
```
43+
44+
## Deployment
45+
46+
Este projeto pode ser facilmente implementado em plataformas como:
47+
48+
- Netlify
49+
- Vercel
50+
- GitHub Pages
51+
52+
## Licença
53+
54+
[MIT](https://choosealicense.com/licenses/mit/)
55+
56+
---
57+
58+
Criado com ❤️ por IA

bun.lockb

194 KB
Binary file not shown.

components.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/index.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib",
18+
"hooks": "@/hooks"
19+
}
20+
}

eslint.config.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import js from "@eslint/js";
2+
import globals from "globals";
3+
import reactHooks from "eslint-plugin-react-hooks";
4+
import reactRefresh from "eslint-plugin-react-refresh";
5+
import tseslint from "typescript-eslint";
6+
7+
export default tseslint.config(
8+
{ ignores: ["dist"] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ["**/*.{ts,tsx}"],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
"react-hooks": reactHooks,
18+
"react-refresh": reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
"react-refresh/only-export-components": [
23+
"warn",
24+
{ allowConstantExport: true },
25+
],
26+
"@typescript-eslint/no-unused-vars": "off",
27+
},
28+
}
29+
);

index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="pt-BR">
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Minhas Redes Sociais | LinkTree</title>
8+
<meta name="description" content="Conecte-se comigo através das minhas redes sociais" />
9+
<meta name="author" content="LinkTree IA" />
10+
<meta property="og:image" content="/og-image.png" />
11+
</head>
12+
13+
<body>
14+
<div id="root"></div>
15+
<!-- IMPORTANT: DO NOT REMOVE THIS SCRIPT TAG OR THIS VERY COMMENT! -->
16+
<script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script>
17+
<script type="module" src="/src/main.tsx"></script>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)