backend endpoint added to env file

This commit is contained in:
victorAnumudu
2025-02-18 19:13:08 +01:00
parent 07c3db6ee0
commit 8fb9e42ec4
11 changed files with 204 additions and 10 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from 'react'
import BreadcrumbCom from '../components/breadcrumb/BreadcrumbCom'
export default function ApplyPage() {
return (
<div className='w-full'>
<BreadcrumbCom title='Apply' paths={['Dashboard', 'Apply']} />
<p className=''>
coming soon ...
</p>
</div>
)
}