Merged develop into fix/edit-profile-server-action

This commit is contained in:
Chuma Mcphoy (We Ahead)
2024-06-24 12:57:27 +00:00
6 changed files with 22 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
"use client"
import { useParams } from "next/navigation"
import MyPagesMobileDropdown from "@/components/Current/Header/MyPagesMobileDropdown"
import { LangParams } from "@/types/params"
export default function Error() {
const params = useParams<LangParams>()
return <MyPagesMobileDropdown navigation={null} lang={params.lang} />
}

View File

@@ -1,4 +1,5 @@
import "@scandic-hotels/design-system/current/style.css"
import "@/app/globals.css"
import "@scandic-hotels/design-system/style.css"
import Script from "next/script"