Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b5fe6210fc | ||
|
|
6ad831a234 | ||
|
|
ab424c89dc |
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,8 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
*/node_modules/
|
*/node_modules/
|
||||||
*/build/
|
*/build/
|
||||||
|
|
||||||
|
**/node_modules/
|
||||||
|
**/build/
|
||||||
|
.DS_Store
|
||||||
|
.env
|
||||||
File diff suppressed because one or more lines are too long
1
frontend/json/runtimeError.json
Normal file
1
frontend/json/runtimeError.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@ -1,3 +1,5 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { FooterStyle } from './designs';
|
import { FooterStyle } from './designs';
|
||||||
import { FooterDesigns } from './designs';
|
import { FooterDesigns } from './designs';
|
||||||
|
|||||||
@ -53,6 +53,7 @@ export default function Login() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const title = 'Yt auto pilot';
|
const title = 'Yt auto pilot';
|
||||||
|
const currentYear = new Date().getFullYear();
|
||||||
|
|
||||||
// Fetch Pexels image/video
|
// Fetch Pexels image/video
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -359,9 +360,10 @@ export default function Login() {
|
|||||||
</SectionFullScreen>
|
</SectionFullScreen>
|
||||||
<div className='bg-black text-white flex flex-col text-center justify-center md:flex-row'>
|
<div className='bg-black text-white flex flex-col text-center justify-center md:flex-row'>
|
||||||
<p className='py-6 text-sm'>
|
<p className='py-6 text-sm'>
|
||||||
© 2024 <span>{title}</span>.{' '}
|
|
||||||
{t('pages.login.footer.copyright', {
|
{t('pages.login.footer.copyright', {
|
||||||
defaultValue: '© All rights reserved',
|
year: currentYear,
|
||||||
|
title,
|
||||||
|
defaultValue: `© ${currentYear} ${title}. All rights reserved`,
|
||||||
})}
|
})}
|
||||||
</p>
|
</p>
|
||||||
<Link className='py-6 ml-4 text-sm' href='/privacy-policy/'>
|
<Link className='py-6 ml-4 text-sm' href='/privacy-policy/'>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user