Compare commits

...

2 Commits

Author SHA1 Message Date
nico 633be4b4e4 debug(core): add debug script 2026-04-17 17:21:13 +02:00
nico f9677e4434 refactor(core): restructure folders 2026-04-17 17:21:03 +02:00
4 changed files with 25 additions and 4 deletions
+21
View File
@@ -0,0 +1,21 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Dev",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script", "dev"
],
}
]
}
+2 -2
View File
@@ -3,8 +3,8 @@ import { Geist, Geist_Mono, Inter } from "next/font/google";
import "../globals.css";
import { cn } from "@/lib/utils";
import { ThemeProvider } from "../../components/theme-provider";
import BackgroundEffects from "../../components/custom/background-effects";
import Navbar from "../../components/custom/navbar";
import BackgroundEffects from "./background-effects";
import Navbar from "./navbar";
import { NextIntlClientProvider } from "next-intl";
const inter = Inter({subsets:['latin'],variable:'--font-sans'});
@@ -3,9 +3,9 @@
import { Fragment, useEffect, useState } from "react"
import Link from "next/link"
import { cn } from "@/lib/utils"
import { ThemeSwitch } from "./theme-switch"
import { ThemeSwitch } from "../../components/custom/theme-switch"
import { useTranslations } from "next-intl"
import { LocaleSwitch } from "./locale-switch"
import { LocaleSwitch } from "../../components/custom/locale-switch"
import { Button } from "@/components/ui/button"
import { Menu, X } from "lucide-react"
import {