Skip to content

Commit

Permalink
version2:0.2.3beta
Browse files Browse the repository at this point in the history
  • Loading branch information
PhelipeG committed May 10, 2024
1 parent b5a2267 commit cca25dc
Show file tree
Hide file tree
Showing 22 changed files with 773 additions and 327 deletions.
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/styles/globals.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,23 @@
},
"dependencies": {
"@phosphor-icons/react": "^2.0.10",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
"@types/node": "20.3.1",
"@types/react": "18.2.13",
"@types/react-dom": "18.2.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"file-loader": "^6.2.0",
"lucide-react": "^0.378.0",
"next": "13.4.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.3"
},
"devDependencies": {
Expand Down
54 changes: 0 additions & 54 deletions src/components/CardTechs.tsx

This file was deleted.

17 changes: 0 additions & 17 deletions src/components/ContactLinks.tsx

This file was deleted.

11 changes: 0 additions & 11 deletions src/components/Container.tsx

This file was deleted.

9 changes: 0 additions & 9 deletions src/components/Footer.tsx

This file was deleted.

65 changes: 0 additions & 65 deletions src/components/Navbar.tsx

This file was deleted.

59 changes: 0 additions & 59 deletions src/components/Navigation.tsx

This file was deleted.

78 changes: 0 additions & 78 deletions src/components/ProfileHero.tsx

This file was deleted.

19 changes: 19 additions & 0 deletions src/components/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// components/Layout.tsx
import { ReactNode } from 'react';
import { MenuBarNav } from './menubar-nav';


type LayoutProps = {
children: ReactNode;
};

export default function Layout({ children }: LayoutProps) {
return (
<div className="flex h-screen">
<MenuBarNav />
<main className="flex-grow">
{children}
</main>
</div>
);
}
Loading

0 comments on commit cca25dc

Please sign in to comment.