Skip to content

Commit

Permalink
feat: add icons
Browse files Browse the repository at this point in the history
  • Loading branch information
claymartinez committed Oct 24, 2023
1 parent 6303752 commit 0a5098a
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 2 deletions.
10 changes: 10 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"build-storybook": "storybook build"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@popperjs/core": "^2.11.8",
"@types/node": "20.4.5",
"@types/react": "18.2.18",
Expand Down
1 change: 1 addition & 0 deletions src/app/dashboardUser/Maps/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import '~/assets/styles/tailwind.css';

// components

Expand Down
1 change: 1 addition & 0 deletions src/app/dashboardUser/Settings/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"use client"
import React from 'react';
import '~/assets/styles/tailwind.css';

// components

Expand Down
4 changes: 2 additions & 2 deletions src/app/dashboardUser/Tables/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export default function Tables() {
<div className="w-full mb-12 px-4">
<CardTable />
</div>
{/* <div className="w-full mb-12 px-4">
<div className="w-full mb-12 px-4">
<CardTable color="dark" />
</div> */}
</div>
</div>
</>
);
Expand Down
3 changes: 3 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ import { ThemeProvider } from 'next-themes';
const inter = Inter({ subsets: ['latin'] });


import '@fortawesome/fontawesome-free/css/all.min.css';


export default function RootLayout({
children,
}: {
Expand Down

0 comments on commit 0a5098a

Please sign in to comment.