first commit
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
import React from 'react';
|
||||
import Grid from "@mui/material/Grid";
|
||||
import DefaultSelect from '@/components/Forms/AdvancedElements/DefaultSelect';
|
||||
import MultiSelect from '@/components/Forms/AdvancedElements/MultiSelect';
|
||||
import MultipleSelectChip from '@/components/Forms/AdvancedElements/MultipleSelectChip';
|
||||
import CountrySelect from '@/components/Forms/AdvancedElements/CountrySelect';
|
||||
import BasicDatePicker from '@/components/Forms/AdvancedElements/BasicDatePicker';
|
||||
import BasicTimePicker from '@/components/Forms/AdvancedElements/BasicTimePicker';
|
||||
import Link from 'next/link';
|
||||
import styles from '@/styles/PageTitle.module.css'
|
||||
|
||||
export default function AdvancedElements() {
|
||||
return (
|
||||
<>
|
||||
{/* Page title */}
|
||||
<div className={styles.pageTitle}>
|
||||
<h1>Advanced Elements</h1>
|
||||
<ul>
|
||||
<li>
|
||||
<Link href="/">Dashboard</Link>
|
||||
</li>
|
||||
<li>Advanced Elements</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<Grid
|
||||
container
|
||||
rowSpacing={1}
|
||||
columnSpacing={{ xs: 1, sm: 1, md: 1, lg: 1, xl: 2 }}
|
||||
>
|
||||
<Grid item xs={12} md={12} lg={4} xl={4}>
|
||||
{/* DefaultSelect */}
|
||||
<DefaultSelect />
|
||||
</Grid>
|
||||
|
||||
<Grid item xs={12} md={12} lg={4} xl={4}>
|
||||
{/* MultiSelect */}
|
||||
<MultiSelect />
|
||||
</Grid>
|
||||
|
||||
<Grid item xs={12} md={12} lg={4} xl={4}>
|
||||
{/* MultipleSelectChip */}
|
||||
<MultipleSelectChip />
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
{/* CountrySelect */}
|
||||
<CountrySelect />
|
||||
|
||||
{/* BasicTimePicker */}
|
||||
<BasicTimePicker />
|
||||
|
||||
{/* BasicDatePicker */}
|
||||
<BasicDatePicker />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
import EditorArea from '@/components/Forms/EditorArea';
|
||||
import Link from 'next/link';
|
||||
import styles from '@/styles/PageTitle.module.css'
|
||||
|
||||
export default function Editors() {
|
||||
return (
|
||||
<>
|
||||
{/* Page title */}
|
||||
<div className={styles.pageTitle}>
|
||||
<h1>Editors</h1>
|
||||
<ul>
|
||||
<li>
|
||||
<Link href="/">Dashboard</Link>
|
||||
</li>
|
||||
<li>Editors</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<EditorArea />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
import UploadMultipleFiles from '@/components/Forms/FileUploader/UploadMultipleFiles';
|
||||
import Link from 'next/link';
|
||||
import styles from '@/styles/PageTitle.module.css'
|
||||
|
||||
export default function FileUploader() {
|
||||
return (
|
||||
<>
|
||||
{/* Page title */}
|
||||
<div className={styles.pageTitle}>
|
||||
<h1>File Uploader</h1>
|
||||
<ul>
|
||||
<li>
|
||||
<Link href="/">Dashboard</Link>
|
||||
</li>
|
||||
<li>File Uploader</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<UploadMultipleFiles />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
import React from 'react';
|
||||
import Grid from "@mui/material/Grid";
|
||||
import BasicForm from '@/components/Forms/FormLayouts/BasicForm';
|
||||
import BasicWithIcons from '@/components/Forms/FormLayouts/BasicWithIcons';
|
||||
import SignInForm from '@/components/Forms/FormLayouts/SignInForm';
|
||||
import SignUpForm from '@/components/Forms/FormLayouts/SignUpForm';
|
||||
import CustomStyles from '@/components/Forms/FormLayouts/CustomStyles';
|
||||
import Link from 'next/link';
|
||||
import styles from '@/styles/PageTitle.module.css'
|
||||
|
||||
export default function FormLayouts() {
|
||||
return (
|
||||
<>
|
||||
{/* Page title */}
|
||||
<div className={styles.pageTitle}>
|
||||
<h1>Form Layouts</h1>
|
||||
<ul>
|
||||
<li>
|
||||
<Link href="/">Dashboard</Link>
|
||||
</li>
|
||||
<li>Form Layouts</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<Grid
|
||||
container
|
||||
rowSpacing={1}
|
||||
columnSpacing={{ xs: 1, sm: 1, md: 1, lg: 1, xl: 2 }}
|
||||
>
|
||||
<Grid item xs={12} md={12} lg={12} xl={6}>
|
||||
{/* BasicForm */}
|
||||
<BasicForm />
|
||||
|
||||
{/* SignIn */}
|
||||
<SignInForm />
|
||||
</Grid>
|
||||
|
||||
<Grid item xs={12} md={12} lg={12} xl={6}>
|
||||
{/* BasicWithIcons */}
|
||||
<BasicWithIcons />
|
||||
|
||||
{/* SignUpForm */}
|
||||
<SignUpForm />
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
<CustomStyles />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user