diff --git a/package.json b/package.json index 90d42bc..8a152d2 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,8 @@ }, "dependencies": { "react": "^19.2.3", - "react-dom": "^19.2.3" + "react-dom": "^19.2.3", + "react-icons": "^5.5.0" }, "devDependencies": { "@eslint/eslintrc": "^3.3.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b08c46b..41a2c4d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,6 +14,9 @@ importers: react-dom: specifier: ^19.2.3 version: 19.2.3(react@19.2.3) + react-icons: + specifier: ^5.5.0 + version: 5.5.0(react@19.2.3) devDependencies: '@eslint/eslintrc': specifier: ^3.3.3 @@ -1782,6 +1785,11 @@ packages: peerDependencies: react: ^19.2.3 + react-icons@5.5.0: + resolution: {integrity: sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==} + peerDependencies: + react: '*' + react@19.2.3: resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==} engines: {node: '>=0.10.0'} @@ -3733,6 +3741,10 @@ snapshots: react: 19.2.3 scheduler: 0.27.0 + react-icons@5.5.0(react@19.2.3): + dependencies: + react: 19.2.3 + react@19.2.3: {} read-cache@1.0.0: diff --git a/src/App.tsx b/src/App.tsx index 4366da4..eaf9389 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,5 +1,7 @@ +import Landing from '@/components/Landing' + function App() { - return <>Minimal project + return } export default App diff --git a/src/components/Landing.tsx b/src/components/Landing.tsx new file mode 100644 index 0000000..7aecdb6 --- /dev/null +++ b/src/components/Landing.tsx @@ -0,0 +1,52 @@ +import { FaGoogle, FaGithub, FaInstagram } from 'react-icons/fa' + +function Landing() { + return ( +
+
+
+
+
+ UNEFA Codex +
+ +

Welcome Back

+ + +
+ +
+ + + +
+
+ sigue a bufferring +
+
+ +
+ + + +
+
+ +

Somo la cabra lo reye con lo dioses

+
+ +
+
+
+ ) +} + +export default Landing