Commit 57a9efd8 authored by Gamage B.G.J's avatar Gamage B.G.J

Merge branch 'IT20402266' into 'dev'

It20402266

See merge request !4
parents 2053bb22 7e1916c0
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -41,7 +41,7 @@ export const signUp = async (req, res) => {
} = req.body;
try {
if (!type) return res.status(400).json({ code: "02", message: "Type Field Required" })
// if (!type) return res.status(400).json({ code: "02", message: "Type Field Required" })
if (!email) return res.status(400).json({ code: "02", message: "Email Field Required" })
if (!userFirstName) return res.status(400).json({ code: "02", message: "User First Name Field Required" })
if (!userLastName) return res.status(400).json({ code: "02", message: "User Last Name Field Required" })
......@@ -50,51 +50,74 @@ export const signUp = async (req, res) => {
const existingUser = await User.findOne({ email })
if (existingUser) return res.status(400).json({ code: "02", message: "User already exists" })
if (type === "buyer") {
if (!password) return res.status(400).json({ code: "02", message: "Password Field Required" })
if (password !== confirmPassword) return res.status(400).json({ code: "02", message: "Passwords do not match" })
const hashedPassword = await bcrypt.hash(password, 12)
const userDetails = new User({
email,
password: hashedPassword,
type,
userDetails: {
userQNumber: uuidv4(),
userEmail: email,
userName: `${userFirstName} ${userLastName}`,
userContactNumber,
userAddress: `${userAddressLine1}, ${userAddressLine2}, ${userAddressLine3}`,
userType: type,
}
})
const userResult = await userDetails.save()
const token = jwt.sign({ email: userResult.email, id: userResult._id }, 'test', { expiresIn: "1h" })
res.status(200).json({ code: "01", result: userResult, token })
} else if (type === "trader") {
const userDetails = new User({
email,
type,
userDetails: {
userQNumber: uuidv4(),
userEmail: email,
userName: `${userFirstName} ${userLastName}`,
userContactNumber,
userAddress: `${userAddressLine1}, ${userAddressLine2}, ${userAddressLine3}`,
userType: type,
},
states: 2
})
const userResult = await userDetails.save()
const token = jwt.sign({ email: userResult.email, id: userResult._id }, 'test', { expiresIn: "1h" })
res.status(200).json({ code: "01", result: userResult, token })
}
// if (type === "buyer") {
// if (!password) return res.status(400).json({ code: "02", message: "Password Field Required" })
// if (password !== confirmPassword) return res.status(400).json({ code: "02", message: "Passwords do not match" })
// const hashedPassword = await bcrypt.hash(password, 12)
// const userDetails = new User({
// email,
// password: hashedPassword,
// type,
// userDetails: {
// userQNumber: uuidv4(),
// userEmail: email,
// userName: `${userFirstName} ${userLastName}`,
// userContactNumber,
// userAddress: `${userAddressLine1}, ${userAddressLine2}, ${userAddressLine3}`,
// userType: type,
// }
// })
// const userResult = await userDetails.save()
// const token = jwt.sign({ email: userResult.email, id: userResult._id }, 'test', { expiresIn: "1h" })
// res.status(200).json({ code: "01", result: userResult, token })
// } else if (type === "trader") {
// const userDetails = new User({
// email,
// type,
// userDetails: {
// userQNumber: uuidv4(),
// userEmail: email,
// userName: `${userFirstName} ${userLastName}`,
// userContactNumber,
// userAddress: `${userAddressLine1}, ${userAddressLine2}, ${userAddressLine3}`,
// userType: type,
// },
// states: 2
// })
// const userResult = await userDetails.save()
// const token = jwt.sign({ email: userResult.email, id: userResult._id }, 'test', { expiresIn: "1h" })
// res.status(200).json({ code: "01", result: userResult, token })
// }
if (!password) return res.status(400).json({ code: "02", message: "Password Field Required" })
if (password !== confirmPassword) return res.status(400).json({ code: "02", message: "Passwords do not match" })
const hashedPassword = await bcrypt.hash(password, 12)
const userDetails = new User({
email,
password: hashedPassword,
type,
userDetails: {
userQNumber: uuidv4(),
userEmail: email,
userName: `${userFirstName} ${userLastName}`,
userContactNumber,
userAddress: `${userAddressLine1}, ${userAddressLine2}, ${userAddressLine3}`,
}
})
const userResult = await userDetails.save()
const token = jwt.sign({ email: userResult.email, id: userResult._id }, 'test', { expiresIn: "1h" })
res.status(200).json({ code: "01", result: userResult, token })
} catch (error) {
res.status(500).json({ code: "00", message: "Something went wrong" })
......
......@@ -3,10 +3,12 @@ const curriculums = [
"curriculumCode": "01",
"curriculumLevel": "Base Level",
"curriculumName": "Learn Sign Language",
"curriculumImage": "https://drive.google.com/uc?export=view&id=1YACBlu7X-O7-DKv5DoW3AM9kgfT7Yhdc",
"tutorials": [
{
"tutorialCode": "01",
"tutorialTitle": "Numbers and Counting in Sign Language",
"tutorialImage": "https://drive.google.com/uc?export=view&id=1YACBlu7X-O7-DKv5DoW3AM9kgfT7Yhdc",
"taskItems": [
{
"title": "Learn Number One",
......@@ -83,23 +85,41 @@ const curriculums = [
{
"tutorialCode": "02",
"tutorialTitle": "Learn the Basics of Sign Language",
"tutorialImage": "https://drive.google.com/uc?export=view&id=1YACBlu7X-O7-DKv5DoW3AM9kgfT7Yhdc",
"tutorialContent": "Introduce the concept of sign language and its importance.\nTeach basic greetings and expressions, such as hello, goodbye, thank you, and sorry.\nProvide visual demonstrations and practice exercises for learners to practice these basic signs."
},
{
"tutorialCode": "03",
"tutorialTitle": "Family Signs in Sign Language",
"tutorialImage": "https://drive.google.com/uc?export=view&id=1YACBlu7X-O7-DKv5DoW3AM9kgfT7Yhdc",
"tutorialContent": "Teach signs for family members, such as mother, father, sister, brother, etc.\nIntroduce signs for common family-related words, such as family, love, and home.\nProvide visual demonstrations and practice exercises for learners to practice these family signs."
},
{
"tutorialCode": "04",
"tutorialTitle": "Everyday Vocabulary in Sign Language",
"tutorialImage": "https://drive.google.com/uc?export=view&id=1YACBlu7X-O7-DKv5DoW3AM9kgfT7Yhdc",
"tutorialContent": "Teach signs for everyday objects and activities, such as eat, drink, sleep, book, pen, etc.\nIntroduce signs for common words used in daily life.\nProvide visual demonstrations and interactive exercises for learners to practice using these signs."
},
{
"tutorialCode": "05",
"tutorialTitle": "Basic Conversational Phrases in Sign Language",
"tutorialImage": "https://drive.google.com/uc?export=view&id=1YACBlu7X-O7-DKv5DoW3AM9kgfT7Yhdc",
"tutorialContent": "Teach simple conversational phrases, such as \"What is your name?\" or \"How are you?\"\nIntroduce signs for common question words and phrases.\nProvide visual demonstrations and practice exercises for learners to practice these conversational phrases."
}
]
},
{
"curriculumCode": "02",
"curriculumLevel": "Medium Level",
"curriculumName": "Learn Sign Language",
"curriculumImage": "https://drive.google.com/uc?export=view&id=1YACBlu7X-O7-DKv5DoW3AM9kgfT7Yhdc",
"tutorials": []
},
{
"curriculumCode": "03",
"curriculumLevel": "Advance Level",
"curriculumName": "Learn Sign Language",
"curriculumImage": "https://drive.google.com/uc?export=view&id=1YACBlu7X-O7-DKv5DoW3AM9kgfT7Yhdc",
"tutorials": []
}
]
......@@ -36,6 +36,7 @@ const userSchema = mongoose.Schema({
},
userType: {
type: String,
default: "N/A",
required: true
},
},
......
......@@ -5,8 +5,8 @@ import express from "express";
import mongoose from "mongoose";
//import routes
import userRoutes from "./routes/user.routes.js";
import translateRoutes from "./routes/translate.routes.js";
import userRoutes from "./routes/user.routes.js";
dotenv.config();
const app = express();
......
{
"name": "React Material Minimal UI",
"name": "React Material SignConnect+",
"short_name": "Minimal-UI",
"display": "standalone",
"start_url": "/",
......
......@@ -41,6 +41,15 @@ const navConfig = [
items: [
{ title: 'app', path: PATH_DASHBOARD.general.app, icon: ICONS.dashboard },
{ title: 'blank', path: PATH_DASHBOARD.blank, icon: ICONS.blank },
//Spoken language to Sign Language Module items
{
title: 'Spoken language Translation Module',
path: PATH_DASHBOARD.spokenLanguageTranslationModule.root,
icon: ICONS.chat,
children: [
{ title: 'Home', path: PATH_DASHBOARD.spokenLanguageTranslationModule.spokenLanguageTranslationHome },
],
},
// Sign Language Learning Module items
{
title: 'Learning Module',
......
......@@ -97,7 +97,7 @@ export default function Footer() {
<Grid item xs={8} md={3}>
<Typography variant="body2" sx={{ pr: { md: 5 } }}>
The starting point for your next project with Minimal UI Kit, built on the newest
The starting point for your next project with SignConnect+ Kit, built on the newest
version of Material-UI ©, ready to be customized to your style.
</Typography>
......
......@@ -21,7 +21,7 @@ export default function Page403() {
return (
<>
<Head>
<title> 403 Forbidden | Minimal UI</title>
<title> 403 Forbidden | SignConnect+</title>
</Head>
<MotionContainer>
......
......@@ -21,7 +21,7 @@ export default function Page404() {
return (
<>
<Head>
<title> 404 Page Not Found | Minimal UI</title>
<title> 404 Page Not Found | SignConnect+</title>
</Head>
<MotionContainer>
......
......@@ -21,7 +21,7 @@ export default function Page500() {
return (
<>
<Head>
<title> 500 Internal Server Error | Minimal UI</title>
<title> 500 Internal Server Error | SignConnect+</title>
</Head>
<MotionContainer>
......
......@@ -45,10 +45,10 @@ export default class MyDocument extends Document {
{/* Meta */}
<meta
name="description"
content="The starting point for your next project with Minimal UI Kit, built on the newest version of Material-UI ©, ready to be customized to your style"
content="The starting point for your next project with SignConnect+ Kit, built on the newest version of Material-UI ©, ready to be customized to your style"
/>
<meta name="keywords" content="react,material,kit,application,dashboard,admin,template" />
<meta name="author" content="Minimal UI Kit" />
<meta name="author" content="SignConnect+ Kit" />
</Head>
<body>
......
......@@ -17,7 +17,7 @@ export default function AboutPage() {
return (
<>
<Head>
<title> About us | Minimal UI</title>
<title> About us | SignConnect+</title>
</Head>
<AboutHero />
......
......@@ -9,7 +9,7 @@ export default function LoginUnprotectedPage() {
return (
<>
<Head>
<title> Login Unprotected | Minimal UI</title>
<title> Login Unprotected | SignConnect+</title>
</Head>
<Login />
......
......@@ -12,7 +12,7 @@ export default function LoginPage() {
return (
<>
<Head>
<title> Login | Minimal UI</title>
<title> Login | SignConnect+</title>
</Head>
<GuestGuard>
......
......@@ -24,7 +24,7 @@ export default function NewPasswordPage() {
return (
<>
<Head>
<title> New Password | Minimal UI</title>
<title> New Password | SignConnect+</title>
</Head>
<SentIcon sx={{ mb: 5, height: 96 }} />
......
......@@ -9,7 +9,7 @@ export default function RegisterUnprotectedPage() {
return (
<>
<Head>
<title> Register Unprotected | Minimal UI</title>
<title> Register Unprotected | SignConnect+</title>
</Head>
<Register />
......
// next
import Head from 'next/head';
// auth
import GuestGuard from '../../auth/GuestGuard';
// sections
import Register from '../../sections/auth/Register';
......@@ -11,12 +10,10 @@ export default function RegisterPage() {
return (
<>
<Head>
<title> Register | Minimal UI</title>
<title> Register | SignConnect+</title>
</Head>
<GuestGuard>
<Register />
</GuestGuard>
<Register />
</>
);
}
......@@ -24,7 +24,7 @@ export default function ResetPasswordPage() {
return (
<>
<Head>
<title> Reset Password | Minimal UI</title>
<title> Reset Password | SignConnect+</title>
</Head>
<PasswordIcon sx={{ mb: 5, height: 96 }} />
......
......@@ -24,7 +24,7 @@ export default function VerifyCodePage() {
return (
<>
<Head>
<title> Verify Code | Minimal UI</title>
<title> Verify Code | SignConnect+</title>
</Head>
<EmailInboxIcon sx={{ mb: 5, height: 96 }} />
......
......@@ -27,7 +27,7 @@ export default function ComingSoonPage() {
return (
<>
<Head>
<title> Coming Soon | Minimal UI</title>
<title> Coming Soon | SignConnect+</title>
</Head>
<Typography variant="h3" paragraph>
......
......@@ -40,7 +40,7 @@ export default function DemoAnimatePage() {
return (
<>
<Head>
<title> Extra Components: Animate | Minimal UI</title>
<title> Extra Components: Animate | SignConnect+</title>
</Head>
<Box
......
......@@ -41,7 +41,7 @@ export default function DemoCarouselsPage() {
return (
<>
<Head>
<title> Extra Components: Carousels | Minimal UI</title>
<title> Extra Components: Carousels | SignConnect+</title>
</Head>
<Box
......
......@@ -34,7 +34,7 @@ export default function DemoChartsPage() {
return (
<>
<Head>
<title> Extra Components: Charts | Minimal UI</title>
<title> Extra Components: Charts | SignConnect+</title>
</Head>
<Box
......
......@@ -65,7 +65,7 @@ export default function DemoCopyToClipboardPage() {
return (
<>
<Head>
<title> Extra Components: Copy To Clipboard | Minimal UI</title>
<title> Extra Components: Copy To Clipboard | SignConnect+</title>
</Head>
<Box
......
......@@ -35,7 +35,7 @@ export default function DemoEditorPage() {
return (
<>
<Head>
<title> Extra Components: Editor | Minimal UI</title>
<title> Extra Components: Editor | SignConnect+</title>
</Head>
<Box
......
......@@ -21,7 +21,7 @@ export default function DemoFormValidationPage() {
return (
<>
<Head>
<title> Extra Components: Form Validation | Minimal UI</title>
<title> Extra Components: Form Validation | SignConnect+</title>
</Head>
<Box
......
......@@ -29,7 +29,7 @@ export default function DemoImagePage() {
return (
<>
<Head>
<title> Extra Components: Image | Minimal UI</title>
<title> Extra Components: Image | SignConnect+</title>
</Head>
<Box
......
......@@ -26,7 +26,7 @@ export default function DemoLabelPage() {
return (
<>
<Head>
<title> Extra Components: Label | Minimal UI</title>
<title> Extra Components: Label | SignConnect+</title>
</Head>
<Box
......
......@@ -42,7 +42,7 @@ export default function DemoLightboxPage() {
return (
<>
<Head>
<title> Extra Components: Lightbox | Minimal UI</title>
<title> Extra Components: Lightbox | SignConnect+</title>
</Head>
<Box
......
......@@ -74,7 +74,7 @@ export default function DemoMapPage() {
return (
<>
<Head>
<title> Extra Components: Map | Minimal UI</title>
<title> Extra Components: Map | SignConnect+</title>
</Head>
<Box
......
......@@ -30,7 +30,7 @@ export default function DemoMegaMenuPage() {
return (
<>
<Head>
<title> Extra Components: Mega Menu | Minimal UI</title>
<title> Extra Components: Mega Menu | SignConnect+</title>
</Head>
<Box
......
......@@ -60,7 +60,7 @@ export default function DemoMultiLanguagePage() {
return (
<>
<Head>
<title> Extra Components: Multi Language | Minimal UI</title>
<title> Extra Components: Multi Language | SignConnect+</title>
</Head>
<Box
......
......@@ -27,7 +27,7 @@ export default function DemoNavigationBarPage() {
return (
<>
<Head>
<title> Extra Components: Navigation Bar | Minimal UI</title>
<title> Extra Components: Navigation Bar | SignConnect+</title>
</Head>
<Box
......
......@@ -29,7 +29,7 @@ export default function DemoOrganizationalChartPage() {
return (
<>
<Head>
<title> Extra Components: Organizational Chart | Minimal UI</title>
<title> Extra Components: Organizational Chart | SignConnect+</title>
</Head>
<Box
......
......@@ -20,7 +20,7 @@ export default function DemoScrollbarPage() {
return (
<>
<Head>
<title> Extra Components: Scrollbar | Minimal UI</title>
<title> Extra Components: Scrollbar | SignConnect+</title>
</Head>
<Box
......
......@@ -59,7 +59,7 @@ export default function DemoSnackbarPage() {
return (
<>
<Head>
<title> Extra Components: Snackbar | Minimal UI</title>
<title> Extra Components: Snackbar | SignConnect+</title>
</Head>
<Box
......
......@@ -21,7 +21,7 @@ export default function DemoTextMaxLinePage() {
return (
<>
<Head>
<title> Extra Components: Text Max Line | Minimal UI</title>
<title> Extra Components: Text Max Line | SignConnect+</title>
</Head>
<Box
......
......@@ -87,7 +87,7 @@ export default function DemoUploadPage() {
return (
<>
<Head>
<title> Extra Components: Upload | Minimal UI</title>
<title> Extra Components: Upload | SignConnect+</title>
</Head>
<Box
......
......@@ -54,7 +54,7 @@ export default function FoundationColorsPage() {
return (
<>
<Head>
<title> Foundations: Colors | Minimal UI</title>
<title> Foundations: Colors | SignConnect+</title>
</Head>
<Box
......
......@@ -60,7 +60,7 @@ export default function FoundationGridPage() {
return (
<>
<Head>
<title> Foundations: Grid | Minimal UI</title>
<title> Foundations: Grid | SignConnect+</title>
</Head>
<Box
......
......@@ -33,7 +33,7 @@ export default function FoundationIconsPage() {
return (
<>
<Head>
<title> Foundations: Icons | Minimal UI</title>
<title> Foundations: Icons | SignConnect+</title>
</Head>
<Box
......
......@@ -51,7 +51,7 @@ export default function FoundationShadowsPage() {
return (
<>
<Head>
<title> Foundations: Shadows | Minimal UI</title>
<title> Foundations: Shadows | SignConnect+</title>
</Head>
<Box
......
......@@ -55,7 +55,7 @@ export default function FoundationTypographyPage() {
return (
<>
<Head>
<title> Foundations: Typography | Minimal UI</title>
<title> Foundations: Typography | SignConnect+</title>
</Head>
<Box
......
......@@ -19,7 +19,7 @@ export default function ComponentsOverviewPage() {
return (
<>
<Head>
<title> Components Overview | Minimal UI</title>
<title> Components Overview | SignConnect+</title>
</Head>
<ComponentHero />
......
......@@ -50,7 +50,7 @@ export default function MUIAccordionPage() {
return (
<>
<Head>
<title> MUI Components: Accordion | Minimal UI</title>
<title> MUI Components: Accordion | SignConnect+</title>
</Head>
<Box
......
......@@ -36,7 +36,7 @@ export default function MUIAlertPage() {
return (
<>
<Head>
<title> MUI Components: Alert | Minimal UI</title>
<title> MUI Components: Alert | SignConnect+</title>
</Head>
<Box
......
......@@ -47,7 +47,7 @@ export default function MUIAutocompletePage() {
return (
<>
<Head>
<title> MUI Components: Autocomplete | Minimal UI</title>
<title> MUI Components: Autocomplete | SignConnect+</title>
</Head>
<Box
......
......@@ -40,7 +40,7 @@ export default function MUIAvatarPage() {
return (
<>
<Head>
<title> MUI Components: Avatar | Minimal UI</title>
<title> MUI Components: Avatar | SignConnect+</title>
</Head>
<Box
......
......@@ -23,7 +23,7 @@ export default function MUIBadgePage() {
return (
<>
<Head>
<title> MUI Components: Badge | Minimal UI</title>
<title> MUI Components: Badge | SignConnect+</title>
</Head>
<Box
......
......@@ -22,7 +22,7 @@ export default function MUIBreadcrumbsPage() {
return (
<>
<Head>
<title> MUI Components: Breadcrumbs | Minimal UI</title>
<title> MUI Components: Breadcrumbs | SignConnect+</title>
</Head>
<Box
......
......@@ -49,7 +49,7 @@ export default function MUIButtonsPage() {
return (
<>
<Head>
<title> MUI Components: Buttons | Minimal UI</title>
<title> MUI Components: Buttons | SignConnect+</title>
</Head>
<Box
......
......@@ -52,7 +52,7 @@ export default function MUICheckboxPage() {
return (
<>
<Head>
<title> MUI Components: Checkbox | Minimal UI</title>
<title> MUI Components: Checkbox | SignConnect+</title>
</Head>
<Box
......
......@@ -21,7 +21,7 @@ export default function MUIChipPage() {
return (
<>
<Head>
<title> MUI Components: Chip | Minimal UI</title>
<title> MUI Components: Chip | SignConnect+</title>
</Head>
<Box
......
......@@ -40,7 +40,7 @@ export default function MUIDataGridPage() {
return (
<>
<Head>
<title> MUI Components: DataGrid | Minimal UI</title>
<title> MUI Components: DataGrid | SignConnect+</title>
</Head>
<Box
......
......@@ -37,7 +37,7 @@ export default function MUIDialogPage() {
return (
<>
<Head>
<title> MUI Components: Dialog | Minimal UI</title>
<title> MUI Components: Dialog | SignConnect+</title>
</Head>
<Box
......
......@@ -97,7 +97,7 @@ export default function MUIListPage() {
return (
<>
<Head>
<title> MUI Components: List | Minimal UI</title>
<title> MUI Components: List | SignConnect+</title>
</Head>
<Box
......
......@@ -98,7 +98,7 @@ export default function MUIMenuPage() {
return (
<>
<Head>
<title> MUI Components: Menu | Minimal UI</title>
<title> MUI Components: Menu | SignConnect+</title>
</Head>
<Box
......
......@@ -60,7 +60,7 @@ export default function MUIPaginationPage() {
return (
<>
<Head>
<title> MUI Components: Pagination | Minimal UI</title>
<title> MUI Components: Pagination | SignConnect+</title>
</Head>
<Box
......
......@@ -36,7 +36,7 @@ export default function MUIPickersPage() {
return (
<>
<Head>
<title> MUI Components: Pickers | Minimal UI</title>
<title> MUI Components: Pickers | SignConnect+</title>
</Head>
<Box
......
......@@ -73,7 +73,7 @@ export default function MUIPopoverPage() {
return (
<>
<Head>
<title> MUI Components: Popover | Minimal UI</title>
<title> MUI Components: Popover | SignConnect+</title>
</Head>
<Box
......
......@@ -70,7 +70,7 @@ export default function MUIProgressPage() {
return (
<>
<Head>
<title> MUI Components: Progress | Minimal UI</title>
<title> MUI Components: Progress | SignConnect+</title>
</Head>
<Box
......
......@@ -43,7 +43,7 @@ export default function MUIRadioButtonsPage() {
return (
<>
<Head>
<title> MUI Components: Radio Buttons | Minimal UI</title>
<title> MUI Components: Radio Buttons | SignConnect+</title>
</Head>
<Box
......
......@@ -88,7 +88,7 @@ export default function MUIRatingPage() {
return (
<>
<Head>
<title> MUI Components: Rating | Minimal UI</title>
<title> MUI Components: Rating | SignConnect+</title>
</Head>
<Box
......
......@@ -79,7 +79,7 @@ export default function MUISliderPage() {
return (
<>
<Head>
<title> MUI Components: Slider | Minimal UI</title>
<title> MUI Components: Slider | SignConnect+</title>
</Head>
<Box
......
......@@ -25,7 +25,7 @@ export default function MUIStepperPage() {
return (
<>
<Head>
<title> MUI Components: Stepper | Minimal UI</title>
<title> MUI Components: Stepper | SignConnect+</title>
</Head>
<Box
......
......@@ -36,7 +36,7 @@ export default function MUISwitchPage() {
return (
<>
<Head>
<title> MUI Components: Switch | Minimal UI</title>
<title> MUI Components: Switch | SignConnect+</title>
</Head>
<Box
......
......@@ -24,7 +24,7 @@ export default function MUITablePage() {
return (
<>
<Head>
<title> MUI Components: Table | Minimal UI</title>
<title> MUI Components: Table | SignConnect+</title>
</Head>
<Box
......
......@@ -78,7 +78,7 @@ export default function MUITabsPage() {
return (
<>
<Head>
<title> MUI Components: Tabs | Minimal UI</title>
<title> MUI Components: Tabs | SignConnect+</title>
</Head>
<Box
......
......@@ -32,7 +32,7 @@ export default function MUITextFieldPage() {
return (
<>
<Head>
<title> MUI Components: Textfield | Minimal UI</title>
<title> MUI Components: Textfield | SignConnect+</title>
</Head>
<Box
......
......@@ -106,7 +106,7 @@ export default function MUITimelinePage() {
return (
<>
<Head>
<title> MUI Components: Timeline | Minimal UI</title>
<title> MUI Components: Timeline | SignConnect+</title>
</Head>
<Box
......
......@@ -40,7 +40,7 @@ export default function MUITooltipPage() {
return (
<>
<Head>
<title> MUI Components: Tooltip | Minimal UI</title>
<title> MUI Components: Tooltip | SignConnect+</title>
</Head>
<Box
......
......@@ -32,7 +32,7 @@ export default function MUITransferListPage() {
return (
<>
<Head>
<title> MUI Components: Transfer List | Minimal UI</title>
<title> MUI Components: Transfer List | SignConnect+</title>
</Head>
<Box
......
......@@ -45,7 +45,7 @@ export default function MUITreesViewPage() {
return (
<>
<Head>
<title> MUI Components: Tree View | Minimal UI</title>
<title> MUI Components: Tree View | SignConnect+</title>
</Head>
<Box
......
......@@ -19,7 +19,7 @@ export default function ContactPage() {
return (
<>
<Head>
<title> Contact us | Minimal UI</title>
<title> Contact us | SignConnect+</title>
</Head>
<ContactHero />
......
......@@ -38,7 +38,7 @@ export default function GeneralAnalyticsPage() {
return (
<>
<Head>
<title> General: Analytics | Minimal UI</title>
<title> General: Analytics | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -49,7 +49,7 @@ export default function GeneralAppPage() {
return (
<>
<Head>
<title> General: App | Minimal UI</title>
<title> General: App | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -40,7 +40,7 @@ export default function GeneralBankingPage() {
return (
<>
<Head>
<title> General: Banking | Minimal UI</title>
<title> General: Banking | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -18,7 +18,7 @@ export default function BlankPage() {
return (
<>
<Head>
<title> Blank Page | Minimal UI</title>
<title> Blank Page | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -24,7 +24,7 @@ export default function BlogNewPostPage() {
return (
<>
<Head>
<title> Blog: New Post | Minimal UI</title>
<title> Blog: New Post | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -87,7 +87,7 @@ export default function BlogPostPage() {
return (
<>
<Head>
<title>{`Blog: ${post?.title || ''} | Minimal UI`}</title>
<title>{`Blog: ${post?.title || ''} | SignConnect+`}</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -64,7 +64,7 @@ export default function BlogPostsPage() {
return (
<>
<Head>
<title> Blog: Posts | Minimal UI</title>
<title> Blog: Posts | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -43,7 +43,7 @@ export default function GeneralBookingPage() {
return (
<>
<Head>
<title> General: Booking | Minimal UI</title>
<title> General: Booking | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -253,7 +253,7 @@ export default function CalendarPage() {
return (
<>
<Head>
<title> Calendar | Minimal UI</title>
<title> Calendar | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -15,7 +15,7 @@ export default function ChatPage() {
return (
<>
<Head>
<title> Chat | Minimal UI</title>
<title> Chat | SignConnect+</title>
</Head>
<Chat />
......
......@@ -15,7 +15,7 @@ export default function ChatPage() {
return (
<>
<Head>
<title> Chat | Minimal UI</title>
<title> Chat | SignConnect+</title>
</Head>
<Chat />
......
......@@ -15,7 +15,7 @@ export default function ChatPage() {
return (
<>
<Head>
<title> Chat | Minimal UI</title>
<title> Chat | SignConnect+</title>
</Head>
<Chat />
......
......@@ -121,7 +121,7 @@ export default function EcommerceCheckoutPage() {
return (
<>
<Head>
<title> Ecommerce: Checkout | Minimal UI</title>
<title> Ecommerce: Checkout | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -198,7 +198,7 @@ export default function EcommerceProductListPage() {
return (
<>
<Head>
<title> Ecommerce: Product List | Minimal UI</title>
<title> Ecommerce: Product List | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -99,7 +99,7 @@ export default function EcommerceProductDetailsPage() {
return (
<>
<Head>
<title>{`Ecommerce: ${product?.name || ''} | Minimal UI`}</title>
<title>{`Ecommerce: ${product?.name || ''} | SignConnect+`}</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -46,7 +46,7 @@ export default function EcommerceProductEditPage() {
return (
<>
<Head>
<title> Ecommerce: Edit product | Minimal UI</title>
<title> Ecommerce: Edit product | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -26,7 +26,7 @@ export default function EcommerceProductCreatePage() {
return (
<>
<Head>
<title> Ecommerce: Create a new product | Minimal UI</title>
<title> Ecommerce: Create a new product | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -96,7 +96,7 @@ export default function EcommerceShopPage() {
return (
<>
<Head>
<title> Ecommerce: Shop | Minimal UI</title>
<title> Ecommerce: Shop | SignConnect+</title>
</Head>
<FormProvider methods={methods}>
......
......@@ -49,7 +49,7 @@ export default function GeneralEcommercePage() {
return (
<>
<Head>
<title> General: E-commerce | Minimal UI</title>
<title> General: E-commerce | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -135,7 +135,7 @@ export default function GeneralFilePage() {
return (
<>
<Head>
<title> General: File | Minimal UI</title>
<title> General: File | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -196,7 +196,7 @@ export default function FileManagerPage() {
return (
<>
<Head>
<title> File Manager | Minimal UI</title>
<title> File Manager | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -33,7 +33,7 @@ export default function InvoiceEditPage() {
return (
<>
<Head>
<title> Invoice: Edit | Minimal UI</title>
<title> Invoice: Edit | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -35,7 +35,7 @@ export default function InvoiceDetailsPage() {
return (
<>
<Head>
<title> Invoice: View | Minimal UI</title>
<title> Invoice: View | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -236,7 +236,7 @@ export default function InvoiceListPage() {
return (
<>
<Head>
<title> Invoice: List | Minimal UI</title>
<title> Invoice: List | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment