@@ -4,7 +4,11 @@
|
|||||||
"import/order": [
|
"import/order": [
|
||||||
"error",
|
"error",
|
||||||
{
|
{
|
||||||
"newlines-between": "always"
|
"newlines-between": "always",
|
||||||
|
"alphabetize": {
|
||||||
|
"order": "asc",
|
||||||
|
"caseInsensitive": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { appWithTranslation } from 'next-i18next'
|
|
||||||
import { createTheme, ThemeProvider } from '@mui/material/styles'
|
|
||||||
import { CssBaseline } from '@mui/material'
|
import { CssBaseline } from '@mui/material'
|
||||||
|
import { createTheme, ThemeProvider } from '@mui/material/styles'
|
||||||
|
import { appWithTranslation } from 'next-i18next'
|
||||||
|
|
||||||
import 'reset-css'
|
import 'reset-css'
|
||||||
import '../styles/global.scss'
|
import '../styles/global.scss'
|
||||||
|
|||||||
32
app/pages/home/HelpModal.js
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
import { Dialog, DialogTitle, Box, Typography } from '@mui/material'
|
||||||
|
import { useTranslation } from 'next-i18next'
|
||||||
|
|
||||||
|
export default function HelpModal ({ open, onClose }) {
|
||||||
|
const { t } = useTranslation('home')
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog
|
||||||
|
open={open}
|
||||||
|
onClose={onClose}
|
||||||
|
>
|
||||||
|
<DialogTitle>
|
||||||
|
{t('help_header')}
|
||||||
|
</DialogTitle>
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
p: 3
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography gutterBottom>
|
||||||
|
{t('help_body_1')}
|
||||||
|
</Typography>
|
||||||
|
<Typography gutterBottom>
|
||||||
|
{t('help_body_2')}
|
||||||
|
</Typography>
|
||||||
|
<Typography gutterBottom>
|
||||||
|
{t('help_body_3')}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -1,19 +1,42 @@
|
|||||||
|
import { Box, Chip } from '@mui/material'
|
||||||
import { useTranslation } from 'next-i18next'
|
import { useTranslation } from 'next-i18next'
|
||||||
import Image from 'next/image'
|
import Image from 'next/image'
|
||||||
import { Box } from '@mui/material'
|
import { useState } from 'react'
|
||||||
|
|
||||||
import logo from './assets/warframe_logo.png'
|
import logo from './assets/warframe_logo.png'
|
||||||
|
import HelpModal from './HelpModal'
|
||||||
|
|
||||||
const Hero = () => {
|
const Hero = () => {
|
||||||
const { t } = useTranslation('home')
|
const { t } = useTranslation('home')
|
||||||
|
const [modalOpen, setModalOpen] = useState(false)
|
||||||
|
|
||||||
|
const openModal = () => {
|
||||||
|
setModalOpen(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
const closeModal = () => {
|
||||||
|
setModalOpen(false)
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
py: 12,
|
py: 12,
|
||||||
textAlign: 'center'
|
textAlign: 'center'
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
<Chip
|
||||||
|
label={t('help_header')}
|
||||||
|
variant='outlined'
|
||||||
|
onClick={openModal}
|
||||||
|
sx={{
|
||||||
|
position: 'absolute',
|
||||||
|
top: '10px',
|
||||||
|
right: '10px'
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
width: 400,
|
width: 400,
|
||||||
@@ -38,6 +61,12 @@ const Hero = () => {
|
|||||||
<p>{t('description')}</p>
|
<p>{t('description')}</p>
|
||||||
</Box>
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
|
<HelpModal
|
||||||
|
open={modalOpen}
|
||||||
|
onClose={closeModal}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { Component } from 'react'
|
|
||||||
import { DataGrid } from '@mui/x-data-grid'
|
|
||||||
import { Link, Typography, Box } from '@mui/material'
|
import { Link, Typography, Box } from '@mui/material'
|
||||||
|
import { DataGrid } from '@mui/x-data-grid'
|
||||||
|
import { Component } from 'react'
|
||||||
import { withTranslation } from 'react-i18next'
|
import { withTranslation } from 'react-i18next'
|
||||||
import Moment from 'react-moment'
|
import Moment from 'react-moment'
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Component } from 'react'
|
|
||||||
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
|
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
|
||||||
|
import { Component } from 'react'
|
||||||
import { models } from 'shared-stuff'
|
import { models } from 'shared-stuff'
|
||||||
|
|
||||||
import dbConnect from '../../lib/dbConnect'
|
import dbConnect from '../../lib/dbConnect'
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 9.0 KiB |
@@ -1,5 +1,9 @@
|
|||||||
{
|
{
|
||||||
"description": "Find a profitable difference between the price of the set and the price of the sum of it's parts.",
|
"description": "Find a profitable difference between the price of the set and the price of the sum of it's parts.",
|
||||||
|
"help_header": "How to use this site",
|
||||||
|
"help_body_1": "The main page of the site has a table, that contains info about prime items, that is updated in real time. The column \"Name\" has a link to the item on warframe.market and the time of the last update.",
|
||||||
|
"help_body_2": "Knowing the difference between the price of the set and the price of the sum of it's parts lets you save platinum buying or even make a profit by purchasing the parts and selling them as a set.",
|
||||||
|
"help_body_3": "Have fun!",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"parts_price": "Parts Price",
|
"parts_price": "Parts Price",
|
||||||
"set_price": "Set Price",
|
"set_price": "Set Price",
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{
|
{
|
||||||
"description": "Находи выгодную разницу между ценой набора и ценой его частей по отдельности.",
|
"description": "Находи выгодную разницу между ценой набора и ценой его частей по отдельности.",
|
||||||
|
"help_header": "Как использовать этот сайт?",
|
||||||
|
"help_body_1": "На главной странице сайта находится таблица, которая содержит информацию о прайм предметах, обновляемую в реальном времени. Колонка \"Наименование\" содержит ссылку на страницу предмета на warframe.market и время последнего обновления информации.",
|
||||||
|
"help_body_2": "Зная разницу между ценой частей и ценой комплекта можно, например сэкономить на покупке или даже заработать, если купить части по отдельности, а продать как сет.",
|
||||||
|
"help_body_3": "Приятного использования!",
|
||||||
"name": "Наименование",
|
"name": "Наименование",
|
||||||
"parts_price": "Цена частей",
|
"parts_price": "Цена частей",
|
||||||
"set_price": "Цена набора",
|
"set_price": "Цена набора",
|
||||||
|
|||||||