update home page bg & style
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
import Logo from "@/components/assets/Logo"
|
||||
import Image from "next/image"
|
||||
|
||||
function RegisterPage() {
|
||||
function RegisterPage({ children }) {
|
||||
return (
|
||||
<div className="grid place-items-center h-screen w-full">
|
||||
<div className="flex items-center justify-center">
|
||||
<Logo />
|
||||
<p className="text-[#526CAC] text-[20px] font-bold">نوبت ۷۲۴</p>
|
||||
<div className="grid bg-banner-register !bg-contain !bg-no-repeat !bg-top place-items-center h-screen w-full">
|
||||
<div className="flex items-center justify-center gap-[5px]">
|
||||
<Image
|
||||
src='/assets/images/logo.png'
|
||||
width={40}
|
||||
height={40}
|
||||
alt="logo"
|
||||
/>
|
||||
<p className="text-[#5559CE] text-[20px] font-bold">نوبت ۷۲۴</p>
|
||||
</div>
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
import React from 'react'
|
||||
|
||||
function SignInPage() {
|
||||
return (
|
||||
<div className='rounded-[16px] border border-solid border-[#EFEFEF] bg-[#FFF] p-[40px] pb-[48px]'>
|
||||
<p className='text-[#525252] text-[18px] font-bold'>ورود یا ثبت نام در نوبت 724</p>
|
||||
<div className='flex flex-col justify-center gap-[24px] mt-[48px] items-center'>
|
||||
<p className='text-[#616161] text-[14px] font-normal'>شماره همراه خود را وارد نمایید.</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default SignInPage
|
||||
Reference in New Issue
Block a user