fix folder

deksripsi:
- pindah folder user search & notifikasi ke (user)
This commit is contained in:
2025-07-08 11:47:32 +08:00
parent 8abf23fd13
commit b9af7e0ca7
11 changed files with 98 additions and 104 deletions

View File

@@ -13,7 +13,7 @@ export default function RegisterView() {
const [username, setUsername] = useState("Bagas Banuna");
const handleRegister = () => {
console.log("Success register", username);
router.push("/(application)/home");
router.push("/(application)/(user)/home");
};
return (
<>

View File

@@ -1,5 +1,5 @@
// import { ITabs } from "@/components/_Interface/types";
import Spacing from "@/components/_ShareComponent/Spacing";
import { StackCustom } from "@/components";
import ViewWrapper from "@/components/_ShareComponent/ViewWrapper";
import { useNavigation } from "expo-router";
import React, { useEffect } from "react";
@@ -16,21 +16,16 @@ export default function UiHome() {
navigation.setOptions({});
}, [navigation]);
return (
<>
<ViewWrapper footerComponent={<TabSection tabs={tabsHome} />}>
{/* Content Image */}
<Home_ImageSection />
<Spacing height={10} />
<StackCustom>
<Home_ImageSection />
{/* Grid Section */}
<Home_FeatureSection />
<Spacing height={10} />
<Home_FeatureSection />
{/* Job Vacancy Section */}
<Home_BottomFeatureSection />
<Spacing height={20} />
<Home_BottomFeatureSection />
</StackCustom>
</ViewWrapper>
</>
);