mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-06-29 07:33:57 +00:00
first commit
This commit is contained in:
5
app/(dashboard)/devices/page.tsx
Normal file
5
app/(dashboard)/devices/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default async function Devices() {
|
||||
return <div>
|
||||
<h2>Devices</h2>
|
||||
</div>;
|
||||
}
|
9
app/(dashboard)/layout.tsx
Normal file
9
app/(dashboard)/layout.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import { ApplicationLayout } from "@/components/auth/application-layout";
|
||||
|
||||
export default function DashboardLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return <ApplicationLayout>{children}</ApplicationLayout>;
|
||||
}
|
17
app/(dashboard)/payments/page.tsx
Normal file
17
app/(dashboard)/payments/page.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
'use client'
|
||||
import { PhoneInput } from '@/components/ui/phone-input'
|
||||
import React from 'react'
|
||||
|
||||
export default function MyPayments() {
|
||||
return (
|
||||
<div>
|
||||
<PhoneInput
|
||||
id="phone-number"
|
||||
name="phoneNumber"
|
||||
placeholder="Enter phone number"
|
||||
defaultCountry="MV"
|
||||
/>
|
||||
</div>
|
||||
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user