Commit 27bc8747 authored by Gamage B.G.J's avatar Gamage B.G.J

Revert "Merge branch 'IT20251000' into 'dev'"

This reverts merge request !6
parent 3c233a51
......@@ -2,11 +2,7 @@
"cells": [
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 6,
=======
"execution_count": 2,
>>>>>>> master
"id": "ade37944",
"metadata": {},
"outputs": [],
......@@ -21,11 +17,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 7,
=======
"execution_count": 3,
>>>>>>> master
"id": "16176bf6",
"metadata": {},
"outputs": [
......@@ -48,11 +40,7 @@
" 'Uhh']"
]
},
<<<<<<< HEAD
"execution_count": 7,
=======
"execution_count": 3,
>>>>>>> master
"metadata": {},
"output_type": "execute_result"
}
......@@ -69,11 +57,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 8,
=======
"execution_count": 4,
>>>>>>> master
"id": "8f7b1301",
"metadata": {},
"outputs": [],
......@@ -99,11 +83,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 9,
=======
"execution_count": 5,
>>>>>>> master
"id": "c9034cbe",
"metadata": {},
"outputs": [],
......@@ -133,11 +113,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": null,
=======
"execution_count": 6,
>>>>>>> master
"id": "7adb379e",
"metadata": {},
"outputs": [],
......@@ -148,11 +124,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": null,
=======
"execution_count": 7,
>>>>>>> master
"id": "d44f7806",
"metadata": {},
"outputs": [],
......@@ -172,18 +144,11 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": null,
=======
"execution_count": 8,
>>>>>>> master
"id": "ff4f0d06",
"metadata": {
"scrolled": true
},
<<<<<<< HEAD
"outputs": [],
=======
"outputs": [
{
"name": "stdout",
......@@ -222,7 +187,6 @@
"output_type": "execute_result"
}
],
>>>>>>> master
"source": [
"model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy'])\n",
"model.fit(train_data, train_labels, epochs=EPOCHS, batch_size=BATCH_SIZE, validation_data=(val_data, val_labels))\n"
......@@ -230,12 +194,6 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": null,
"id": "61d6a8d8",
"metadata": {},
"outputs": [],
=======
"execution_count": 9,
"id": "61d6a8d8",
"metadata": {},
......@@ -262,20 +220,14 @@
]
}
],
>>>>>>> master
"source": [
"model.save('./models/model')"
]
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": null,
"id": "fdc9bfe6",
=======
"execution_count": 10,
"id": "dc610fdb",
>>>>>>> master
"metadata": {},
"outputs": [],
"source": [
......@@ -303,12 +255,6 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": null,
"id": "297e3e3c",
"metadata": {},
"outputs": [],
=======
"execution_count": 11,
"id": "6b6d20d2",
"metadata": {},
......@@ -325,7 +271,6 @@
]
}
],
>>>>>>> master
"source": [
"predictions = model.predict(test_data)\n",
"predicted_classes = np.argmax(predictions, axis=1)\n",
......@@ -337,11 +282,7 @@
{
"cell_type": "code",
"execution_count": null,
<<<<<<< HEAD
"id": "e22211b0",
=======
"id": "2bd77ac5",
>>>>>>> master
"metadata": {},
"outputs": [],
"source": [
......
{
"cells": [
{
<<<<<<< HEAD
"cell_type": "markdown",
"id": "91b96b6e",
"metadata": {},
"source": [
"### Importing Required Libraries\n"
]
},
{
"cell_type": "code",
"execution_count": 6,
=======
"cell_type": "code",
"execution_count": 12,
>>>>>>> master
"id": "ade37944",
"metadata": {},
"outputs": [],
......@@ -24,31 +11,13 @@
"import os\n",
"import cv2\n",
"import numpy as np\n",
<<<<<<< HEAD
"from sklearn.model_selection import train_test_split"
]
},
{
"cell_type": "markdown",
"id": "a75d6b34",
"metadata": {},
"source": [
"### Define Constants\n",
"\n",
"In this section, I define some constants used throughout the code. IMG_SIZE represents the desired size of the input images, BATCH_SIZE determines the number of samples processed in each training batch, and EPOCHS specifies the number of times the model will iterate over the entire dataset during training. CLASSES is a list of class names extracted from the directory structure, and NUM_CLASSES represents the total number of classes in the dataset."
=======
"from sklearn.model_selection import train_test_split\n",
"import mediapipe as mp"
>>>>>>> master
]
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 7,
=======
"execution_count": 13,
>>>>>>> master
"id": "16176bf6",
"metadata": {},
"outputs": [
......@@ -71,11 +40,7 @@
" 'Uhh']"
]
},
<<<<<<< HEAD
"execution_count": 7,
=======
"execution_count": 13,
>>>>>>> master
"metadata": {},
"output_type": "execute_result"
}
......@@ -92,11 +57,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 8,
=======
"execution_count": 14,
>>>>>>> master
"id": "8f7b1301",
"metadata": {},
"outputs": [],
......@@ -121,23 +82,8 @@
]
},
{
<<<<<<< HEAD
"cell_type": "markdown",
"id": "3d2af75d",
"metadata": {},
"source": [
"### Load Dataset\n",
"\n",
"In this section, I define a function load_dataset() to load the images and labels from the dataset directory. The function iterates over the classes and images, reads and preprocesses each image, and stores the data and corresponding labels. The dataset path is provided as an argument to the function. After loading the dataset, I split it into training and validation sets using the train_test_split() function from sklearn. The split is done with a test size of 20% and a random state of 42."
]
},
{
"cell_type": "code",
"execution_count": 9,
=======
"cell_type": "code",
"execution_count": 15,
>>>>>>> master
"id": "c9034cbe",
"metadata": {},
"outputs": [],
......@@ -167,11 +113,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 10,
=======
"execution_count": 16,
>>>>>>> master
"id": "7adb379e",
"metadata": {},
"outputs": [],
......@@ -181,23 +123,8 @@
]
},
{
<<<<<<< HEAD
"cell_type": "markdown",
"id": "34d79d4d",
"metadata": {},
"source": [
"### Define the Model Architecture and Compile\n",
"\n",
"In this section, I define the model architecture using the Sequential API from TensorFlow's Keras API. The model consists of a series of convolutional and pooling layers, followed by flatten and dense layers. The convolutional layers extract features from the input images, and the dense layers perform classification based on these extracted features. The model is compiled with the Adam optimizer, categorical cross-entropy loss function, and accuracy as the evaluation metric."
]
},
{
"cell_type": "code",
"execution_count": 11,
=======
"cell_type": "code",
"execution_count": 17,
>>>>>>> master
"id": "d44f7806",
"metadata": {},
"outputs": [],
......@@ -216,23 +143,8 @@
]
},
{
<<<<<<< HEAD
"cell_type": "markdown",
"id": "ab7b7e82",
"metadata": {},
"source": [
"### Train the Model\n",
"\n",
"In this section, I train the model using the fit() function. It takes the training data and labels as inputs and trains the model for the specified number of epochs and batch size. The validation data and labels are provided for evaluation during training. The model learns from the training data to minimize the defined loss function and improve its accuracy."
]
},
{
"cell_type": "code",
"execution_count": 12,
=======
"cell_type": "code",
"execution_count": 18,
>>>>>>> master
"id": "ff4f0d06",
"metadata": {
"scrolled": true
......@@ -242,48 +154,6 @@
"name": "stdout",
"output_type": "stream",
"text": [
<<<<<<< HEAD
"Epoch 1/20\n",
"152/152 [==============================] - 238s 2s/step - loss: 0.7102 - accuracy: 0.8011 - val_loss: 0.1194 - val_accuracy: 0.9703\n",
"Epoch 2/20\n",
"152/152 [==============================] - 238s 2s/step - loss: 0.0302 - accuracy: 0.9926 - val_loss: 0.0199 - val_accuracy: 0.9934\n",
"Epoch 3/20\n",
"152/152 [==============================] - 239s 2s/step - loss: 0.0124 - accuracy: 0.9963 - val_loss: 0.0118 - val_accuracy: 0.9959\n",
"Epoch 4/20\n",
"152/152 [==============================] - 229s 2s/step - loss: 0.0066 - accuracy: 0.9971 - val_loss: 0.0149 - val_accuracy: 0.9967\n",
"Epoch 5/20\n",
"152/152 [==============================] - 232s 2s/step - loss: 0.0108 - accuracy: 0.9973 - val_loss: 0.0066 - val_accuracy: 0.9967\n",
"Epoch 6/20\n",
"152/152 [==============================] - 231s 2s/step - loss: 5.5893e-05 - accuracy: 1.0000 - val_loss: 0.0039 - val_accuracy: 0.9975\n",
"Epoch 7/20\n",
"152/152 [==============================] - 232s 2s/step - loss: 2.1583e-05 - accuracy: 1.0000 - val_loss: 0.0033 - val_accuracy: 0.9975\n",
"Epoch 8/20\n",
"152/152 [==============================] - 229s 2s/step - loss: 1.3742e-05 - accuracy: 1.0000 - val_loss: 0.0029 - val_accuracy: 0.9983\n",
"Epoch 9/20\n",
"152/152 [==============================] - 241s 2s/step - loss: 9.8952e-06 - accuracy: 1.0000 - val_loss: 0.0026 - val_accuracy: 0.9983\n",
"Epoch 10/20\n",
"152/152 [==============================] - 248s 2s/step - loss: 7.5536e-06 - accuracy: 1.0000 - val_loss: 0.0024 - val_accuracy: 0.9983\n",
"Epoch 11/20\n",
"152/152 [==============================] - 250s 2s/step - loss: 5.9049e-06 - accuracy: 1.0000 - val_loss: 0.0021 - val_accuracy: 0.9983\n",
"Epoch 12/20\n",
"152/152 [==============================] - 235s 2s/step - loss: 4.7004e-06 - accuracy: 1.0000 - val_loss: 0.0018 - val_accuracy: 0.9992\n",
"Epoch 13/20\n",
"152/152 [==============================] - 235s 2s/step - loss: 3.7410e-06 - accuracy: 1.0000 - val_loss: 0.0016 - val_accuracy: 1.0000\n",
"Epoch 14/20\n",
"152/152 [==============================] - 217s 1s/step - loss: 2.8805e-06 - accuracy: 1.0000 - val_loss: 0.0015 - val_accuracy: 1.0000\n",
"Epoch 15/20\n",
"152/152 [==============================] - 208s 1s/step - loss: 2.1801e-06 - accuracy: 1.0000 - val_loss: 0.0012 - val_accuracy: 1.0000\n",
"Epoch 16/20\n",
"152/152 [==============================] - 206s 1s/step - loss: 1.6329e-06 - accuracy: 1.0000 - val_loss: 9.0677e-04 - val_accuracy: 1.0000\n",
"Epoch 17/20\n",
"152/152 [==============================] - 203s 1s/step - loss: 1.2007e-06 - accuracy: 1.0000 - val_loss: 7.3540e-04 - val_accuracy: 1.0000\n",
"Epoch 18/20\n",
"152/152 [==============================] - 205s 1s/step - loss: 9.0502e-07 - accuracy: 1.0000 - val_loss: 6.9178e-04 - val_accuracy: 1.0000\n",
"Epoch 19/20\n",
"152/152 [==============================] - 205s 1s/step - loss: 6.9678e-07 - accuracy: 1.0000 - val_loss: 6.0417e-04 - val_accuracy: 1.0000\n",
"Epoch 20/20\n",
"152/152 [==============================] - 204s 1s/step - loss: 5.5925e-07 - accuracy: 1.0000 - val_loss: 6.0406e-04 - val_accuracy: 1.0000\n"
=======
"Epoch 1/10\n",
"152/152 [==============================] - 217s 1s/step - loss: 0.8329 - accuracy: 0.7585 - val_loss: 0.0838 - val_accuracy: 0.9860\n",
"Epoch 2/10\n",
......@@ -304,23 +174,15 @@
"152/152 [==============================] - 220s 1s/step - loss: 1.7629e-04 - accuracy: 1.0000 - val_loss: 0.0190 - val_accuracy: 0.9967\n",
"Epoch 10/10\n",
"152/152 [==============================] - 208s 1s/step - loss: 1.5000e-05 - accuracy: 1.0000 - val_loss: 0.0197 - val_accuracy: 0.9967\n"
>>>>>>> master
]
},
{
"data": {
"text/plain": [
<<<<<<< HEAD
"<keras.callbacks.History at 0x283f3ad5a90>"
]
},
"execution_count": 12,
=======
"<keras.callbacks.History at 0x2d6000ebeb0>"
]
},
"execution_count": 18,
>>>>>>> master
"metadata": {},
"output_type": "execute_result"
}
......@@ -332,11 +194,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 13,
=======
"execution_count": 19,
>>>>>>> master
"id": "61d6a8d8",
"metadata": {},
"outputs": [
......@@ -363,20 +221,12 @@
}
],
"source": [
<<<<<<< HEAD
"model.save('./models/model') "
=======
"model.save('./models/model')"
>>>>>>> master
]
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 14,
=======
"execution_count": 20,
>>>>>>> master
"id": "fdc9bfe6",
"metadata": {},
"outputs": [],
......@@ -405,11 +255,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 15,
=======
"execution_count": 21,
>>>>>>> master
"id": "297e3e3c",
"metadata": {},
"outputs": [
......@@ -417,13 +263,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
<<<<<<< HEAD
"5/5 [==============================] - 2s 299ms/step\n",
"Test Accuracy: 0.9084507042253521\n"
=======
"5/5 [==============================] - 2s 297ms/step\n",
"Test Accuracy: 0.9225352112676056\n"
>>>>>>> master
]
}
],
......@@ -437,11 +278,7 @@
},
{
"cell_type": "code",
<<<<<<< HEAD
"execution_count": 16,
=======
"execution_count": 22,
>>>>>>> master
"id": "e22211b0",
"metadata": {},
"outputs": [
......@@ -449,11 +286,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
<<<<<<< HEAD
"5/5 [==============================] - 2s 323ms/step\n"
=======
"5/5 [==============================] - 2s 299ms/step\n"
>>>>>>> master
]
}
],
......@@ -469,8 +302,6 @@
]
},
{
<<<<<<< HEAD
=======
"cell_type": "code",
"execution_count": null,
"id": "885678c5",
......@@ -491,7 +322,6 @@
]
},
{
>>>>>>> master
"cell_type": "markdown",
"id": "69b66fc1",
"metadata": {},
......
......@@ -41,11 +41,7 @@ export const signUp = async (req, res) => {
} = req.body;
try {
<<<<<<< HEAD
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" })
>>>>>>> master
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" })
......@@ -54,53 +50,6 @@ 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" })
<<<<<<< HEAD
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" })
......@@ -169,7 +118,6 @@ export const signUp = async (req, res) => {
const token = jwt.sign({ email: userResult.email, id: userResult._id }, 'test', { expiresIn: "1h" })
res.status(200).json({ code: "01", result: userResult, token })
>>>>>>> master
} catch (error) {
res.status(500).json({ code: "00", message: "Something went wrong" })
......
......@@ -36,10 +36,7 @@ const userSchema = mongoose.Schema({
},
userType: {
type: String,
<<<<<<< HEAD
=======
default: "N/A",
>>>>>>> master
required: true
},
},
......
......@@ -5,13 +5,8 @@ import express from "express";
import mongoose from "mongoose";
//import routes
<<<<<<< HEAD
import userRoutes from "./routes/user.routes.js";
import translateRoutes from "./routes/translate.routes.js";
=======
import translateRoutes from "./routes/translate.routes.js";
import userRoutes from "./routes/user.routes.js";
>>>>>>> master
dotenv.config();
const app = express();
......
......@@ -16,12 +16,6 @@
files/*
!files/
<<<<<<< HEAD
*.pyc
*~
*.swp
=======
>>>>>>> master
# Created by https://www.toptal.com/developers/gitignore/api/python
# Edit at https://www.toptal.com/developers/gitignore?templates=python
......
<<<<<<< HEAD
from fastapi import APIRouter, File, HTTPException,UploadFile
from pydantic import BaseModel
import tensorflow as tf
from core.logger import setup_logger
=======
import base64
import os
import cv2
......@@ -15,7 +7,6 @@ from pydantic import BaseModel
import tensorflow as tf
from core import setup_logger
>>>>>>> master
from services.translate_service import SignLanguagePredictionService
from utils import mappings
......
import logging
def setup_logger():
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
# Create a file handler for logging to a file
file_handler = logging.FileHandler('app.log')
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(formatter)
# Create a stream handler for logging to console
stream_handler = logging.StreamHandler()
stream_handler.setLevel(logging.INFO)
stream_handler.setFormatter(formatter)
# Add the handlers to the logger
logger.addHandler(file_handler)
logger.addHandler(stream_handler)
return logger
......@@ -2,13 +2,7 @@ from fastapi import FastAPI
from controllers import translate_controler, users_controller
from fastapi.responses import RedirectResponse
from fastapi.middleware.cors import CORSMiddleware
<<<<<<< HEAD
from core.logger import setup_logger
=======
from core import setup_logger
>>>>>>> master
app = FastAPI()
......
......@@ -5,15 +5,10 @@ import numpy as np
from fastapi import HTTPException, UploadFile
from typing import Dict
<<<<<<< HEAD
from core.logger import setup_logger
=======
import tensorflow as tf
from core import setup_logger
from utils import mappings
>>>>>>> master
logger = setup_logger()
......
This source diff could not be displayed because it is too large. You can view the blob instead.
{
<<<<<<< HEAD
"name": "React Material Minimal UI",
=======
"name": "React Material SignConnect+",
>>>>>>> master
"short_name": "Minimal-UI",
"display": "standalone",
"start_url": "/",
......
......@@ -17,11 +17,7 @@ import MegaMenuCarousel from './MenuCarousel';
// ----------------------------------------------------------------------
const MENU_PAPER_WIDTH = 800;
<<<<<<< HEAD
const PARENT_ITEM_HEIGHT = 40;
=======
const PARENT_ITEM_HEIGHT = 60;
>>>>>>> master
type Props = {
data: MegaMenuItemProps[];
......
......@@ -2,33 +2,18 @@ import { useEffect } from 'react';
// next
import { useRouter } from 'next/router';
// @mui
<<<<<<< HEAD
import { Box, Stack, Drawer, Button } from '@mui/material';
=======
import { Box, Button, Drawer, Stack } from '@mui/material';
>>>>>>> master
// hooks
import useResponsive from '../../../hooks/useResponsive';
// config
import { NAV } from '../../../config';
// components
<<<<<<< HEAD
import Logo from '../../../components/logo';
import Scrollbar from '../../../components/scrollbar';
import { NavSectionVertical } from '../../../components/nav-section';
//
import navConfig from './config';
import NavDocs from './NavDocs';
import NavAccount from './NavAccount';
import { useSettingsContext } from 'src/components/settings';
=======
import { NavSectionVertical } from '../../../components/nav-section';
import Scrollbar from '../../../components/scrollbar';
//
import { useSettingsContext } from 'src/components/settings';
import NavAccount from './NavAccount';
import navConfig from './config';
>>>>>>> master
// ----------------------------------------------------------------------
......@@ -51,20 +36,12 @@ export default function NavVertical({ openNav, onCloseNav }: Props) {
value: 'mini'
}
} as React.ChangeEvent<HTMLInputElement>)
<<<<<<< HEAD
}else {
=======
} else {
>>>>>>> master
onChangeLayout({
target: {
value: 'vertical'
}
<<<<<<< HEAD
} as React.ChangeEvent<HTMLInputElement> )
=======
} as React.ChangeEvent<HTMLInputElement>)
>>>>>>> master
}
}
......@@ -96,11 +73,7 @@ export default function NavVertical({ openNav, onCloseNav }: Props) {
}}
>
<<<<<<< HEAD
<Button onClick={onClickHan}>Change Layout</Button>
=======
<Button onClick={onClickHan}>Change Layout</Button>
>>>>>>> master
{/* <Logo /> */}
<NavAccount />
......@@ -109,12 +82,7 @@ export default function NavVertical({ openNav, onCloseNav }: Props) {
<NavSectionVertical data={navConfig} />
<Box sx={{ flexGrow: 1 }} />
<<<<<<< HEAD
<NavDocs />
=======
>>>>>>> master
</Scrollbar>
);
......
// routes
import { PATH_DASHBOARD } from '../../../routes/paths';
// components
<<<<<<< HEAD
import Label from '../../../components/label';
import Iconify from '../../../components/iconify';
=======
>>>>>>> master
import SvgColor from '../../../components/svg-color';
// ----------------------------------------------------------------------
......@@ -36,216 +31,15 @@ const ICONS = {
ecommerce: icon('ic_ecommerce'),
analytics: icon('ic_analytics'),
dashboard: icon('ic_dashboard'),
<<<<<<< HEAD
};
const navConfig = [
// GENERAL
// ----------------------------------------------------------------------
=======
learning: icon('ic_learning')
};
const navConfig = [
// GENERAL
>>>>>>> master
{
subheader: 'general',
items: [
{ title: 'app', path: PATH_DASHBOARD.general.app, icon: ICONS.dashboard },
<<<<<<< HEAD
{ title: 'ecommerce', path: PATH_DASHBOARD.general.ecommerce, icon: ICONS.ecommerce },
{ title: 'analytics', path: PATH_DASHBOARD.general.analytics, icon: ICONS.analytics },
{ title: 'banking', path: PATH_DASHBOARD.general.banking, icon: ICONS.banking },
{ title: 'booking', path: PATH_DASHBOARD.general.booking, icon: ICONS.booking },
{ title: 'file', path: PATH_DASHBOARD.general.file, icon: ICONS.file },
],
},
// MANAGEMENT
// ----------------------------------------------------------------------
{
subheader: 'management',
items: [
// USER
{
title: 'user',
path: PATH_DASHBOARD.user.root,
icon: ICONS.user,
children: [
{ title: 'profile', path: PATH_DASHBOARD.user.profile },
{ title: 'cards', path: PATH_DASHBOARD.user.cards },
{ title: 'list', path: PATH_DASHBOARD.user.list },
{ title: 'create', path: PATH_DASHBOARD.user.new },
{ title: 'edit', path: PATH_DASHBOARD.user.demoEdit },
{ title: 'account', path: PATH_DASHBOARD.user.account },
],
},
// E-COMMERCE
{
title: 'ecommerce',
path: PATH_DASHBOARD.eCommerce.root,
icon: ICONS.cart,
children: [
{ title: 'shop', path: PATH_DASHBOARD.eCommerce.shop },
{ title: 'product', path: PATH_DASHBOARD.eCommerce.demoView },
{ title: 'list', path: PATH_DASHBOARD.eCommerce.list },
{ title: 'create', path: PATH_DASHBOARD.eCommerce.new },
{ title: 'edit', path: PATH_DASHBOARD.eCommerce.demoEdit },
{ title: 'checkout', path: PATH_DASHBOARD.eCommerce.checkout },
],
},
// INVOICE
{
title: 'invoice',
path: PATH_DASHBOARD.invoice.root,
icon: ICONS.invoice,
children: [
{ title: 'list', path: PATH_DASHBOARD.invoice.list },
{ title: 'details', path: PATH_DASHBOARD.invoice.demoView },
{ title: 'create', path: PATH_DASHBOARD.invoice.new },
{ title: 'edit', path: PATH_DASHBOARD.invoice.demoEdit },
],
},
// BLOG
{
title: 'blog',
path: PATH_DASHBOARD.blog.root,
icon: ICONS.blog,
children: [
{ title: 'posts', path: PATH_DASHBOARD.blog.posts },
{ title: 'post', path: PATH_DASHBOARD.blog.demoView },
{ title: 'create', path: PATH_DASHBOARD.blog.new },
],
},
{
title: 'File manager',
path: PATH_DASHBOARD.fileManager,
icon: ICONS.folder,
},
],
},
// APP
// ----------------------------------------------------------------------
{
subheader: 'app',
items: [
{
title: 'mail',
path: PATH_DASHBOARD.mail.root,
icon: ICONS.mail,
info: <Label color="error">+32</Label>,
},
{
title: 'chat',
path: PATH_DASHBOARD.chat.root,
icon: ICONS.chat,
},
{
title: 'calendar',
path: PATH_DASHBOARD.calendar,
icon: ICONS.calendar,
},
{
title: 'kanban',
path: PATH_DASHBOARD.kanban,
icon: ICONS.kanban,
},
],
},
// DEMO MENU STATES
{
subheader: 'Other cases',
items: [
{
// default roles : All roles can see this entry.
// roles: ['user'] Only users can see this item.
// roles: ['admin'] Only admin can see this item.
// roles: ['admin', 'manager'] Only admin/manager can see this item.
// Reference from 'src/guards/RoleBasedGuard'.
title: 'item_by_roles',
path: PATH_DASHBOARD.permissionDenied,
icon: ICONS.lock,
roles: ['admin'],
caption: 'only_admin_can_see_this_item',
},
{
title: 'menu_level',
path: '#/dashboard/menu_level',
icon: ICONS.menuItem,
children: [
{
title: 'menu_level_2a',
path: '#/dashboard/menu_level/menu_level_2a',
},
{
title: 'menu_level_2b',
path: '#/dashboard/menu_level/menu_level_2b',
children: [
{
title: 'menu_level_3a',
path: '#/dashboard/menu_level/menu_level_2b/menu_level_3a',
},
{
title: 'menu_level_3b',
path: '#/dashboard/menu_level/menu_level_2b/menu_level_3b',
children: [
{
title: 'menu_level_4a',
path: '#/dashboard/menu_level/menu_level_2b/menu_level_3b/menu_level_4a',
},
{
title: 'menu_level_4b',
path: '#/dashboard/menu_level/menu_level_2b/menu_level_3b/menu_level_4b',
},
],
},
],
},
],
},
{
title: 'item_disabled',
path: '#disabled',
icon: ICONS.disabled,
disabled: true,
},
{
title: 'item_label',
path: '#label',
icon: ICONS.label,
info: (
<Label color="info" startIcon={<Iconify icon="eva:email-fill" />}>
NEW
</Label>
),
},
{
title: 'item_caption',
path: '#caption',
icon: ICONS.menuItem,
caption:
'Quisque malesuada placerat nisl. In hac habitasse platea dictumst. Cras id dui. Pellentesque commodo eros a enim. Morbi mollis tellus ac sapien.',
},
{
title: 'item_external_link',
path: 'https://www.google.com/',
icon: ICONS.external,
},
{
title: 'blank',
path: PATH_DASHBOARD.blank,
icon: ICONS.blank,
},
],
},
=======
{ title: 'blank', path: PATH_DASHBOARD.blank, icon: ICONS.blank },
//Spoken language to Sign Language Module items
{
......@@ -271,7 +65,6 @@ const navConfig = [
],
},
>>>>>>> master
];
export default navConfig;
......@@ -97,11 +97,7 @@ export default function Footer() {
<Grid item xs={8} md={3}>
<Typography variant="body2" sx={{ pr: { md: 5 } }}>
<<<<<<< HEAD
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
>>>>>>> master
version of Material-UI ©, ready to be customized to your style.
</Typography>
......
......@@ -21,11 +21,7 @@ export default function Page403() {
return (
<>
<Head>
<<<<<<< HEAD
<title> 403 Forbidden | Minimal UI</title>
=======
<title> 403 Forbidden | SignConnect+</title>
>>>>>>> master
</Head>
<MotionContainer>
......
......@@ -21,11 +21,7 @@ export default function Page404() {
return (
<>
<Head>
<<<<<<< HEAD
<title> 404 Page Not Found | Minimal UI</title>
=======
<title> 404 Page Not Found | SignConnect+</title>
>>>>>>> master
</Head>
<MotionContainer>
......
......@@ -21,11 +21,7 @@ export default function Page500() {
return (
<>
<Head>
<<<<<<< HEAD
<title> 500 Internal Server Error | Minimal UI</title>
=======
<title> 500 Internal Server Error | SignConnect+</title>
>>>>>>> master
</Head>
<MotionContainer>
......
......@@ -45,17 +45,10 @@ export default class MyDocument extends Document {
{/* Meta */}
<meta
name="description"
<<<<<<< HEAD
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"
/>
<meta name="keywords" content="react,material,kit,application,dashboard,admin,template" />
<meta name="author" content="Minimal UI Kit" />
=======
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="SignConnect+ Kit" />
>>>>>>> master
</Head>
<body>
......
......@@ -17,11 +17,7 @@ export default function AboutPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> About us | Minimal UI</title>
=======
<title> About us | SignConnect+</title>
>>>>>>> master
</Head>
<AboutHero />
......
......@@ -9,11 +9,7 @@ export default function LoginUnprotectedPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Login Unprotected | Minimal UI</title>
=======
<title> Login Unprotected | SignConnect+</title>
>>>>>>> master
</Head>
<Login />
......
......@@ -12,11 +12,7 @@ export default function LoginPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Login | Minimal UI</title>
=======
<title> Login | SignConnect+</title>
>>>>>>> master
</Head>
<GuestGuard>
......
......@@ -24,11 +24,7 @@ export default function NewPasswordPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> New Password | Minimal UI</title>
=======
<title> New Password | SignConnect+</title>
>>>>>>> master
</Head>
<SentIcon sx={{ mb: 5, height: 96 }} />
......
......@@ -9,11 +9,7 @@ export default function RegisterUnprotectedPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Register Unprotected | Minimal UI</title>
=======
<title> Register Unprotected | SignConnect+</title>
>>>>>>> master
</Head>
<Register />
......
// next
import Head from 'next/head';
// auth
<<<<<<< HEAD
import GuestGuard from '../../auth/GuestGuard';
=======
>>>>>>> master
// sections
import Register from '../../sections/auth/Register';
......@@ -14,19 +10,10 @@ export default function RegisterPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Register | Minimal UI</title>
</Head>
<GuestGuard>
<Register />
</GuestGuard>
=======
<title> Register | SignConnect+</title>
</Head>
<Register />
>>>>>>> master
</>
);
}
......@@ -24,11 +24,7 @@ export default function ResetPasswordPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Reset Password | Minimal UI</title>
=======
<title> Reset Password | SignConnect+</title>
>>>>>>> master
</Head>
<PasswordIcon sx={{ mb: 5, height: 96 }} />
......
......@@ -24,11 +24,7 @@ export default function VerifyCodePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Verify Code | Minimal UI</title>
=======
<title> Verify Code | SignConnect+</title>
>>>>>>> master
</Head>
<EmailInboxIcon sx={{ mb: 5, height: 96 }} />
......
......@@ -27,11 +27,7 @@ export default function ComingSoonPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Coming Soon | Minimal UI</title>
=======
<title> Coming Soon | SignConnect+</title>
>>>>>>> master
</Head>
<Typography variant="h3" paragraph>
......
......@@ -40,11 +40,7 @@ export default function DemoAnimatePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Animate | Minimal UI</title>
=======
<title> Extra Components: Animate | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -41,11 +41,7 @@ export default function DemoCarouselsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Carousels | Minimal UI</title>
=======
<title> Extra Components: Carousels | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -34,11 +34,7 @@ export default function DemoChartsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Charts | Minimal UI</title>
=======
<title> Extra Components: Charts | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -65,11 +65,7 @@ export default function DemoCopyToClipboardPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Copy To Clipboard | Minimal UI</title>
=======
<title> Extra Components: Copy To Clipboard | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -35,11 +35,7 @@ export default function DemoEditorPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Editor | Minimal UI</title>
=======
<title> Extra Components: Editor | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -21,11 +21,7 @@ export default function DemoFormValidationPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Form Validation | Minimal UI</title>
=======
<title> Extra Components: Form Validation | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -29,11 +29,7 @@ export default function DemoImagePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Image | Minimal UI</title>
=======
<title> Extra Components: Image | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -26,11 +26,7 @@ export default function DemoLabelPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Label | Minimal UI</title>
=======
<title> Extra Components: Label | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -42,11 +42,7 @@ export default function DemoLightboxPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Lightbox | Minimal UI</title>
=======
<title> Extra Components: Lightbox | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -74,11 +74,7 @@ export default function DemoMapPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Map | Minimal UI</title>
=======
<title> Extra Components: Map | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -30,11 +30,7 @@ export default function DemoMegaMenuPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Mega Menu | Minimal UI</title>
=======
<title> Extra Components: Mega Menu | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -60,11 +60,7 @@ export default function DemoMultiLanguagePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Multi Language | Minimal UI</title>
=======
<title> Extra Components: Multi Language | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -27,11 +27,7 @@ export default function DemoNavigationBarPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Navigation Bar | Minimal UI</title>
=======
<title> Extra Components: Navigation Bar | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -29,11 +29,7 @@ export default function DemoOrganizationalChartPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Organizational Chart | Minimal UI</title>
=======
<title> Extra Components: Organizational Chart | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -20,11 +20,7 @@ export default function DemoScrollbarPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Scrollbar | Minimal UI</title>
=======
<title> Extra Components: Scrollbar | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -59,11 +59,7 @@ export default function DemoSnackbarPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Snackbar | Minimal UI</title>
=======
<title> Extra Components: Snackbar | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -21,11 +21,7 @@ export default function DemoTextMaxLinePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Text Max Line | Minimal UI</title>
=======
<title> Extra Components: Text Max Line | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -87,11 +87,7 @@ export default function DemoUploadPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Extra Components: Upload | Minimal UI</title>
=======
<title> Extra Components: Upload | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -54,11 +54,7 @@ export default function FoundationColorsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Foundations: Colors | Minimal UI</title>
=======
<title> Foundations: Colors | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -60,11 +60,7 @@ export default function FoundationGridPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Foundations: Grid | Minimal UI</title>
=======
<title> Foundations: Grid | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -33,11 +33,7 @@ export default function FoundationIconsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Foundations: Icons | Minimal UI</title>
=======
<title> Foundations: Icons | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -51,11 +51,7 @@ export default function FoundationShadowsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Foundations: Shadows | Minimal UI</title>
=======
<title> Foundations: Shadows | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -55,11 +55,7 @@ export default function FoundationTypographyPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Foundations: Typography | Minimal UI</title>
=======
<title> Foundations: Typography | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -19,11 +19,7 @@ export default function ComponentsOverviewPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Components Overview | Minimal UI</title>
=======
<title> Components Overview | SignConnect+</title>
>>>>>>> master
</Head>
<ComponentHero />
......
......@@ -50,11 +50,7 @@ export default function MUIAccordionPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Accordion | Minimal UI</title>
=======
<title> MUI Components: Accordion | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -36,11 +36,7 @@ export default function MUIAlertPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Alert | Minimal UI</title>
=======
<title> MUI Components: Alert | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -47,11 +47,7 @@ export default function MUIAutocompletePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Autocomplete | Minimal UI</title>
=======
<title> MUI Components: Autocomplete | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -40,11 +40,7 @@ export default function MUIAvatarPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Avatar | Minimal UI</title>
=======
<title> MUI Components: Avatar | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -23,11 +23,7 @@ export default function MUIBadgePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Badge | Minimal UI</title>
=======
<title> MUI Components: Badge | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -22,11 +22,7 @@ export default function MUIBreadcrumbsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Breadcrumbs | Minimal UI</title>
=======
<title> MUI Components: Breadcrumbs | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -49,11 +49,7 @@ export default function MUIButtonsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Buttons | Minimal UI</title>
=======
<title> MUI Components: Buttons | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -52,11 +52,7 @@ export default function MUICheckboxPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Checkbox | Minimal UI</title>
=======
<title> MUI Components: Checkbox | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -21,11 +21,7 @@ export default function MUIChipPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Chip | Minimal UI</title>
=======
<title> MUI Components: Chip | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -40,11 +40,7 @@ export default function MUIDataGridPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: DataGrid | Minimal UI</title>
=======
<title> MUI Components: DataGrid | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -37,11 +37,7 @@ export default function MUIDialogPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Dialog | Minimal UI</title>
=======
<title> MUI Components: Dialog | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -97,11 +97,7 @@ export default function MUIListPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: List | Minimal UI</title>
=======
<title> MUI Components: List | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -98,11 +98,7 @@ export default function MUIMenuPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Menu | Minimal UI</title>
=======
<title> MUI Components: Menu | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -60,11 +60,7 @@ export default function MUIPaginationPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Pagination | Minimal UI</title>
=======
<title> MUI Components: Pagination | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -36,11 +36,7 @@ export default function MUIPickersPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Pickers | Minimal UI</title>
=======
<title> MUI Components: Pickers | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -73,11 +73,7 @@ export default function MUIPopoverPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Popover | Minimal UI</title>
=======
<title> MUI Components: Popover | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -70,11 +70,7 @@ export default function MUIProgressPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Progress | Minimal UI</title>
=======
<title> MUI Components: Progress | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -43,11 +43,7 @@ export default function MUIRadioButtonsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Radio Buttons | Minimal UI</title>
=======
<title> MUI Components: Radio Buttons | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -88,11 +88,7 @@ export default function MUIRatingPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Rating | Minimal UI</title>
=======
<title> MUI Components: Rating | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -79,11 +79,7 @@ export default function MUISliderPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Slider | Minimal UI</title>
=======
<title> MUI Components: Slider | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -25,11 +25,7 @@ export default function MUIStepperPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Stepper | Minimal UI</title>
=======
<title> MUI Components: Stepper | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -36,11 +36,7 @@ export default function MUISwitchPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Switch | Minimal UI</title>
=======
<title> MUI Components: Switch | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -24,11 +24,7 @@ export default function MUITablePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Table | Minimal UI</title>
=======
<title> MUI Components: Table | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -78,11 +78,7 @@ export default function MUITabsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Tabs | Minimal UI</title>
=======
<title> MUI Components: Tabs | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -32,11 +32,7 @@ export default function MUITextFieldPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Textfield | Minimal UI</title>
=======
<title> MUI Components: Textfield | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -106,11 +106,7 @@ export default function MUITimelinePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Timeline | Minimal UI</title>
=======
<title> MUI Components: Timeline | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -40,11 +40,7 @@ export default function MUITooltipPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Tooltip | Minimal UI</title>
=======
<title> MUI Components: Tooltip | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -32,11 +32,7 @@ export default function MUITransferListPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Transfer List | Minimal UI</title>
=======
<title> MUI Components: Transfer List | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -45,11 +45,7 @@ export default function MUITreesViewPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> MUI Components: Tree View | Minimal UI</title>
=======
<title> MUI Components: Tree View | SignConnect+</title>
>>>>>>> master
</Head>
<Box
......
......@@ -19,11 +19,7 @@ export default function ContactPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Contact us | Minimal UI</title>
=======
<title> Contact us | SignConnect+</title>
>>>>>>> master
</Head>
<ContactHero />
......
......@@ -38,11 +38,7 @@ export default function GeneralAnalyticsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> General: Analytics | Minimal UI</title>
=======
<title> General: Analytics | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -49,11 +49,7 @@ export default function GeneralAppPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> General: App | Minimal UI</title>
=======
<title> General: App | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -40,11 +40,7 @@ export default function GeneralBankingPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> General: Banking | Minimal UI</title>
=======
<title> General: Banking | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -18,11 +18,7 @@ export default function BlankPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Blank Page | Minimal UI</title>
=======
<title> Blank Page | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -24,11 +24,7 @@ export default function BlogNewPostPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Blog: New Post | Minimal UI</title>
=======
<title> Blog: New Post | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -87,11 +87,7 @@ export default function BlogPostPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title>{`Blog: ${post?.title || ''} | Minimal UI`}</title>
=======
<title>{`Blog: ${post?.title || ''} | SignConnect+`}</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -64,11 +64,7 @@ export default function BlogPostsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Blog: Posts | Minimal UI</title>
=======
<title> Blog: Posts | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -43,11 +43,7 @@ export default function GeneralBookingPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> General: Booking | Minimal UI</title>
=======
<title> General: Booking | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -253,11 +253,7 @@ export default function CalendarPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Calendar | Minimal UI</title>
=======
<title> Calendar | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -15,11 +15,7 @@ export default function ChatPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Chat | Minimal UI</title>
=======
<title> Chat | SignConnect+</title>
>>>>>>> master
</Head>
<Chat />
......
......@@ -15,11 +15,7 @@ export default function ChatPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Chat | Minimal UI</title>
=======
<title> Chat | SignConnect+</title>
>>>>>>> master
</Head>
<Chat />
......
......@@ -15,11 +15,7 @@ export default function ChatPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Chat | Minimal UI</title>
=======
<title> Chat | SignConnect+</title>
>>>>>>> master
</Head>
<Chat />
......
......@@ -121,11 +121,7 @@ export default function EcommerceCheckoutPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Ecommerce: Checkout | Minimal UI</title>
=======
<title> Ecommerce: Checkout | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -198,11 +198,7 @@ export default function EcommerceProductListPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Ecommerce: Product List | Minimal UI</title>
=======
<title> Ecommerce: Product List | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -99,11 +99,7 @@ export default function EcommerceProductDetailsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title>{`Ecommerce: ${product?.name || ''} | Minimal UI`}</title>
=======
<title>{`Ecommerce: ${product?.name || ''} | SignConnect+`}</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -46,11 +46,7 @@ export default function EcommerceProductEditPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Ecommerce: Edit product | Minimal UI</title>
=======
<title> Ecommerce: Edit product | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -26,11 +26,7 @@ export default function EcommerceProductCreatePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Ecommerce: Create a new product | Minimal UI</title>
=======
<title> Ecommerce: Create a new product | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -96,11 +96,7 @@ export default function EcommerceShopPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Ecommerce: Shop | Minimal UI</title>
=======
<title> Ecommerce: Shop | SignConnect+</title>
>>>>>>> master
</Head>
<FormProvider methods={methods}>
......
......@@ -49,11 +49,7 @@ export default function GeneralEcommercePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> General: E-commerce | Minimal UI</title>
=======
<title> General: E-commerce | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -135,11 +135,7 @@ export default function GeneralFilePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> General: File | Minimal UI</title>
=======
<title> General: File | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
......
......@@ -196,11 +196,7 @@ export default function FileManagerPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> File Manager | Minimal UI</title>
=======
<title> File Manager | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -33,11 +33,7 @@ export default function InvoiceEditPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Invoice: Edit | Minimal UI</title>
=======
<title> Invoice: Edit | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -35,11 +35,7 @@ export default function InvoiceDetailsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Invoice: View | Minimal UI</title>
=======
<title> Invoice: View | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -236,11 +236,7 @@ export default function InvoiceListPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Invoice: List | Minimal UI</title>
=======
<title> Invoice: List | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -26,11 +26,7 @@ export default function InvoiceCreatePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Invoices: Create a new invoice | Minimal UI</title>
=======
<title> Invoices: Create a new invoice | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -107,11 +107,7 @@ export default function KanbanPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Kanban | Minimal UI</title>
=======
<title> Kanban | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={false} sx={{ height: 1 }}>
......
......@@ -15,11 +15,7 @@ export default function MailPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Mail | Minimal UI</title>
=======
<title> Mail | SignConnect+</title>
>>>>>>> master
</Head>
<Mail />
......
......@@ -15,11 +15,7 @@ export default function MailPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Mail | Minimal UI</title>
=======
<title> Mail | SignConnect+</title>
>>>>>>> master
</Head>
<Mail />
......
......@@ -15,11 +15,7 @@ export default function MailPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Mail | Minimal UI</title>
=======
<title> Mail | SignConnect+</title>
>>>>>>> master
</Head>
<Mail />
......
......@@ -15,11 +15,7 @@ export default function MailPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Mail | Minimal UI</title>
=======
<title> Mail | SignConnect+</title>
>>>>>>> master
</Head>
<Mail />
......
......@@ -43,11 +43,7 @@ export default function PermissionDeniedPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Other Cases: Permission Denied | Minimal UI</title>
=======
<title> Other Cases: Permission Denied | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
import { Alert, Button, Card, CardActions, CardContent, CardHeader, Container, Grid, Typography } from '@mui/material';
import { Container, Typography } from '@mui/material';
import Head from 'next/head';
import { useCallback, useState } from 'react';
import { ComingSoonIllustration } from 'src/assets/illustrations';
import CustomBreadcrumbs from 'src/components/custom-breadcrumbs/CustomBreadcrumbs';
import Iconify from 'src/components/iconify/Iconify';
import HomeWidget from 'src/sections/@dashboard/spokenLanguageTranslation-module/HomeWidget';
import _mock from '../../../_mock';
import Editor from '../../../components/editor';
import { useSettingsContext } from '../../../components/settings';
import { Upload } from '../../../components/upload';
import DashboardLayout from '../../../layouts/dashboard';
import {
CarouselBasic3
} from '../../../sections/_examples/extra/carousel';
SpokenLanguageTranslationHomePage.getLayout = (page: React.ReactElement) => <DashboardLayout>{page}</DashboardLayout>;
export default function SpokenLanguageTranslationHomePage() {
const { themeStretch } = useSettingsContext();
const [translateType, setTranslateType] = useState<"video" | "text">()
const [file, setFile] = useState<File | string | null>(null);
const [quillSimple, setQuillSimple] = useState('');
const handleHomeWidgetOnClick = (value: string) => {
if (!value) return
if (value == "Video Translate") {
setTranslateType("video")
return
}
if (value == "Text Translate") {
setTranslateType("text")
return
}
}
const handleDropSingleFile = useCallback((acceptedFiles: File[]) => {
const file = acceptedFiles[0];
if (file) {
setFile(
Object.assign(file, {
preview: URL.createObjectURL(file),
})
);
}
}, []);
const _carouselsExample = [...Array(5)].map((_, index) => ({
id: _mock.id(index),
title: _mock.text.title(index),
image: _mock.image.cover(index),
description: _mock.text.description(index),
}));
return (
<>
<Head>
<title> Spoken Language Translation Home | SignLink </title>
<title> Blank Page | SignConnect+</title>
</Head>
<Container maxWidth={themeStretch ? false : 'xl'}>
<CustomBreadcrumbs
heading="Spoken Language Translation"
links={[
{
name: 'Dashboard',
href: '#',
icon: <Iconify icon="eva:home-fill" />,
},
{ name: 'Spoken Language Translation Module', href: '#', icon: <Iconify icon="eva:cube-outline" /> },
{ name: 'Spoken Language Translation', icon: <Iconify icon="eva:cube-outline" /> },
]}
/>
</Container>
<Container maxWidth={themeStretch ? false : 'xl'}>
<Grid container spacing={2} rowSpacing={3}>
<Grid item xs={12} md={6} lg={6}>
<HomeWidget
title="Video Translate"
subTitle="Spoken Language Video Convert to sign language"
icon="eva:video-fill"
color='warning'
handleClick={handleHomeWidgetOnClick}
/>
</Grid>
<Grid item xs={12} md={6} lg={6}>
<HomeWidget
title="Text Translate"
subTitle="Spoken Language Text Convert to sign language"
icon="eva:text-fill"
color="success"
handleClick={handleHomeWidgetOnClick}
/>
</Grid>
{!translateType && <>
<Grid item xs={12} md={12} lg={12}>
<Alert severity='info' >Select a Translation type</Alert>
</Grid>
</>}
{translateType == "video" && <>
<Grid item xs={12} md={8} lg={8}>
<Card>
<CardHeader
title="Upload Video"
subheader="Upload you're video to convert to sigh language"
/>
<CardContent>
<Upload file={file} onDrop={handleDropSingleFile} onDelete={() => setFile(null)} />
</CardContent>
<CardActions>
<Button variant="contained" color='error' fullWidth onClick={() => { setFile(null) }}>
Reset
</Button>
<Button variant="contained" fullWidth>
Convert
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} md={4} lg={4}>
<Card>
<CardHeader title="3D Model" />
<CardContent>
<Typography variant="h3" paragraph>
Coming Soon!
</Typography>
<Typography sx={{ color: 'text.secondary' }}>
We are currently working hard on this page!
</Typography>
<ComingSoonIllustration sx={{ my: 1, height: 200 }} />
</CardContent>
</Card>
</Grid>
</>}
{translateType == "text" && <>
<Grid item xs={12} md={8} lg={8}>
<Card sx={{ height: "100%" }}>
<CardHeader
title="Enter text"
subheader="Enter you're text to convert to sigh language"
/>
<CardContent>
<Editor
simple
id="simple-editor"
value={quillSimple}
onChange={(value) => setQuillSimple(value)}
/>
</CardContent>
<CardActions>
<Button variant="contained" color='error' fullWidth onClick={() => { setQuillSimple('') }}>
Reset
</Button>
<Button variant="contained" fullWidth>
Convert
</Button>
</CardActions>
</Card>
</Grid>
<Grid item xs={12} md={4} lg={4}>
<Card>
<CardHeader title="Converted Output" />
<CardContent>
<CarouselBasic3 data={_carouselsExample} />
</CardContent>
</Card>
</Grid>
</>}
</Grid>
<Typography variant="h6"> Blank </Typography>
</Container>
</>
);
......
......@@ -34,11 +34,7 @@ export default function UserEditPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> User: Edit user | Minimal UI</title>
=======
<title> User: Edit user | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -75,11 +75,7 @@ export default function UserAccountPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> User: Account Settings | Minimal UI</title>
=======
<title> User: Account Settings | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -26,11 +26,7 @@ export default function UserCardsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> User: Cards | Minimal UI</title>
=======
<title> User: Cards | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -195,11 +195,7 @@ export default function UserListPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> User: List | Minimal UI</title>
=======
<title> User: List | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -24,11 +24,7 @@ export default function UserCreatePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> User: Create a new user | Minimal UI</title>
=======
<title> User: Create a new user | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -83,11 +83,7 @@ export default function UserProfilePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> User: Profile | Minimal UI</title>
=======
<title> User: Profile | SignConnect+</title>
>>>>>>> master
</Head>
<Container maxWidth={themeStretch ? false : 'lg'}>
......
......@@ -17,11 +17,7 @@ export default function FaqsPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Faqs | Minimal UI</title>
=======
<title> Faqs | SignConnect+</title>
>>>>>>> master
</Head>
<FaqsHero />
......
<<<<<<< HEAD
import { m, useScroll, useSpring } from 'framer-motion';
// next
import Head from 'next/head';
// @mui
import { useTheme } from '@mui/material/styles';
import { Box } from '@mui/material';
// layouts
import MainLayout from '../layouts/main';
// sections
import {
HomeHero,
HomeMinimal,
HomeDarkMode,
HomeLookingFor,
HomeForDesigner,
HomeColorPresets,
HomePricingPlans,
HomeAdvertisement,
HomeCleanInterfaces,
HomeHugePackElements,
} from '../sections/home';
// ----------------------------------------------------------------------
HomePage.getLayout = (page: React.ReactElement) => <MainLayout> {page} </MainLayout>;
// ----------------------------------------------------------------------
export default function HomePage() {
const theme = useTheme();
const { scrollYProgress } = useScroll();
const scaleX = useSpring(scrollYProgress, {
stiffness: 100,
damping: 30,
restDelta: 0.001,
});
const progress = (
<m.div
style={{
top: 0,
left: 0,
right: 0,
height: 3,
zIndex: 1999,
position: 'fixed',
transformOrigin: '0%',
backgroundColor: theme.palette.primary.main,
scaleX,
}}
/>
);
return (
<>
<Head>
<title> The starting point for your next project | Minimal UI</title>
</Head>
{progress}
<HomeHero />
<Box
sx={{
overflow: 'hidden',
position: 'relative',
bgcolor: 'background.default',
}}
>
<HomeMinimal />
<HomeHugePackElements />
<HomeForDesigner />
<HomeDarkMode />
<HomeColorPresets />
<HomeCleanInterfaces />
<HomePricingPlans />
<HomeLookingFor />
<HomeAdvertisement />
</Box>
</>
);
}
=======
import LoginPage from "./auth/login";
export default LoginPage
>>>>>>> master
export default LoginPage
\ No newline at end of file
......@@ -18,11 +18,7 @@ export default function MaintenancePage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Maintenance | Minimal UI</title>
=======
<title> Maintenance | SignConnect+</title>
>>>>>>> master
</Head>
<Stack sx={{ alignItems: 'center' }}>
......
......@@ -21,11 +21,7 @@ export default function PaymentPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Payment | Minimal UI</title>
=======
<title> Payment | SignConnect+</title>
>>>>>>> master
</Head>
<Container
......
......@@ -19,11 +19,7 @@ export default function PricingPage() {
return (
<>
<Head>
<<<<<<< HEAD
<title> Pricing | Minimal UI</title>
=======
<title> Pricing | SignConnect+</title>
>>>>>>> master
</Head>
<Container
......
......@@ -97,8 +97,6 @@ export const PATH_DASHBOARD = {
view: (title: string) => path(ROOTS_DASHBOARD, `/blog/post/${title}`),
demoView: path(ROOTS_DASHBOARD, '/blog/post/apply-these-7-secret-techniques-to-improve-event'),
},
<<<<<<< HEAD
=======
spokenLanguageTranslationModule: {
root: path(ROOTS_DASHBOARD, '/spokenLanguageTranslation-module'),
spokenLanguageTranslationHome: path(ROOTS_DASHBOARD, '/spokenLanguageTranslation-module'),
......@@ -111,7 +109,6 @@ export const PATH_DASHBOARD = {
leadBoardHome: path(ROOTS_DASHBOARD, '/learning-module/leadBoard'),
feedbackHome: path(ROOTS_DASHBOARD, '/learning-module/feedback'),
},
>>>>>>> master
};
export const PATH_DOCS = {
......
......@@ -20,11 +20,7 @@ export default function Login() {
return (
<LoginLayout>
<Stack spacing={2} sx={{ mb: 5, position: 'relative' }}>
<<<<<<< HEAD
<Typography variant="h4">Sign in to Minimal</Typography>
=======
<Typography variant="h4">Sign in to SignConnect+</Typography>
>>>>>>> master
<Stack direction="row" spacing={0.5}>
<Typography variant="body2">New user?</Typography>
......@@ -49,11 +45,6 @@ export default function Login() {
</Alert>
<AuthLoginForm />
<<<<<<< HEAD
<AuthWithSocial />
=======
>>>>>>> master
</LoginLayout>
);
}
// next
import NextLink from 'next/link';
// @mui
<<<<<<< HEAD
import { Stack, Typography, Link } from '@mui/material';
=======
import { Link, Stack, Typography } from '@mui/material';
>>>>>>> master
// layouts
import LoginLayout from '../../layouts/login';
// routes
import { PATH_AUTH } from '../../routes/paths';
//
<<<<<<< HEAD
import AuthWithSocial from './AuthWithSocial';
=======
>>>>>>> master
import AuthRegisterForm from './AuthRegisterForm';
// ----------------------------------------------------------------------
......@@ -51,10 +43,6 @@ export default function Register() {
.
</Typography>
<<<<<<< HEAD
<AuthWithSocial />
=======
>>>>>>> master
</LoginLayout>
);
}
......@@ -58,11 +58,7 @@ export default function HomeMinimal() {
>
<m.div variants={varFade().inUp}>
<Typography component="div" variant="overline" sx={{ color: 'text.disabled' }}>
<<<<<<< HEAD
Minimal UI
=======
SignConnect+
>>>>>>> master
</Typography>
</m.div>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -13,44 +13,6 @@ The main objective of this project is to develop a Sign Language Translation Sys
## Individual Research Questions and Objectives
<<<<<<< HEAD
### Member: Ranaweera R M S H (IT20251000)
**Research Question:**
- How can sign language translation be achieved by identifying the audio components in a video and the text, and translating them into sign language using 3D components?
**Objectives:**
- Pre-process video data to extract audio components.
- Develop techniques to translate audio into sign language.
- Develop techniques to translate text into sign language.
- Integrate sign language translation with 3D components to create visually appealing sign language videos.
- Evaluate the accuracy of sign language translation.
- Evaluate the overall effectiveness of the sign language translation demonstration.
- Apply computer graphics techniques to enhance the realism and visual quality of the sign language animations.
## Novelty and Contributions
- **Novel Approach:**
> The research question proposes a novel approach to sign language translation by utilizing audio components from a video and text input. This approach combines audio analysis and text translation with 3D components to create visually appealing sign language videos.
- **Audio Component Extraction:**
The research aims to develop techniques to pre-process video data and extract audio components. This extraction process is crucial for identifying and analyzing the audio elements necessary for sign language translation.
- **Audio-to-Sign Language Translation:**
The research contributes to the development of techniques that translate audio components into sign language. By analyzing the audio data, the system can generate accurate sign language gestures and expressions corresponding to the spoken words or sounds.
- **Text-to-Sign Language Translation:**
Another significant contribution is the development of techniques to translate text input into sign language. This enables users to input text directly, which the system converts into sign language gestures and expressions, providing a means of communication for individuals who are deaf or hard of hearing.
- **Integration of 3D Components:**
The research focuses on integrating sign language translation with 3D components to enhance the visual quality and realism of the sign language animations. This integration adds depth and realism to the sign language gestures and creates visually appealing videos that effectively convey the intended message.
- **Evaluation of Translation Accuracy:**
The research evaluates the accuracy of the sign language translation by comparing the generated sign language gestures with established sign language conventions. This evaluation ensures that the translations are linguistically and culturally appropriate, enhancing the overall effectiveness of the system.
- **Computer Graphics Enhancements:**
The research contributes to the application of computer graphics techniques to enhance the realism and visual quality of the sign language animations. By leveraging graphics capabilities, the system can create visually engaging and expressive sign language videos, improving the user experience.
=======
### Member / Leader: Gamage B G J (IT20402266)
**Research Question:**
......@@ -107,4 +69,3 @@ The research contributes to the application of computer graphics techniques to e
- Incorporation of emotions into sign language translation, providing a more expressive and accurate communication experience.
- Advanced image and video processing techniques for accurate identification and translation of sign language gestures.
- Optimization of deployments and models to increase the overall performance and efficiency of the Sign Language Translation System.
>>>>>>> master
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