diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx new file mode 100644 index 0000000..3667a6e --- /dev/null +++ b/app/dashboard/page.tsx @@ -0,0 +1,11 @@ +import NavigationBar from "@/components/NavigationBar"; + +const Dashboard = () => { + return ( +
+ +
+ ); +}; + +export default Dashboard; diff --git a/app/layout.tsx b/app/layout.tsx index b8ce82d..dcd4cf2 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -17,8 +17,6 @@ export const metadata: Metadata = { description: "Generated by create next app", }; -const Navbar = dynamic(() => import("../components/NavigationBar")); - export default function RootLayout({ children, }: Readonly<{ @@ -27,10 +25,10 @@ export default function RootLayout({ // if the current route is login or register, we don't want to show the nav bar return ( - - - {children} - - + + + {children} + + ); } diff --git a/app/login/page.tsx b/app/login/page.tsx index c9aee06..465e955 100644 --- a/app/login/page.tsx +++ b/app/login/page.tsx @@ -12,8 +12,8 @@ const Login = () => { return (
-
-

+

+

Welcome to Feedback Flow

{ > {/* Find a darker color for hover */} + ); +}; +export default UserProfileButton; diff --git a/next.config.mjs b/next.config.mjs index 4678774..9578c64 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,15 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + images: { + remotePatterns: [ + { + protocol: "https", // Specify the protocol + hostname: "static.wikia.nocookie.net", // Specify the hostname + // Optionally, you can also specify the pathname prefix if needed: + // pathname: '/your/pathname/prefix/*', + }, + ], + }, +}; export default nextConfig; diff --git a/public/Job-Profile-Image.svg b/public/Job-Profile-Image.svg new file mode 100644 index 0000000..c4d87b7 --- /dev/null +++ b/public/Job-Profile-Image.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/tailwind.config.ts b/tailwind.config.ts index 95ba64b..2395075 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -15,7 +15,7 @@ const config: Config = { dark: "#492aa9", }, secondary: "#4598FB", - white: "#F8F5F5", + bone: "#F8F5F5", }, backgroundImage: { "gradient-radial": "radial-gradient(var(--tw-gradient-stops))",