Skip to content

Commit

Permalink
πŸ—οΈ changes components dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJustLucas committed Oct 28, 2024
1 parent 53c0654 commit 89ce04e
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/ClientLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";

import { useMobileMenu } from "@/contexts/menu-mobile.context";
import { Sidebar } from "./components/sidebar/Sidebar";
import { Sidebar } from "../components/sidebar/Sidebar";

interface ClientLayoutProps {
children: React.ReactNode;
Expand Down
13 changes: 9 additions & 4 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import "./globals.css";

import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
import ClientLayout from "./ClientLayout";

import { Analytics } from "@vercel/analytics/react";

import { MobileMenuProvider } from "@/contexts/menu-mobile.context";
import ClientLayout from "./ClientLayout";

const geistSans = localFont({
src: "./fonts/GeistVF.woff",
Expand All @@ -16,8 +20,9 @@ const geistMono = localFont({
});

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "ImJustLucas",
description:
"I'm a software developer based in the heart of Paris, France, with a focus on crafting high-quality websites and applications.",
};

export default function RootLayout({
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
}
],
"paths": {
"@/*": ["./*"]
"@/*": ["./*"],
"@assets/*": ["./assets/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
Expand Down

0 comments on commit 89ce04e

Please sign in to comment.