Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b5fe6210fc | ||
|
|
6ad831a234 | ||
|
|
ab424c89dc |
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,8 @@
|
||||
node_modules/
|
||||
*/node_modules/
|
||||
*/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 { FooterStyle } from './designs';
|
||||
import { FooterDesigns } from './designs';
|
||||
|
||||
@ -53,6 +53,7 @@ export default function Login() {
|
||||
});
|
||||
|
||||
const title = 'Yt auto pilot';
|
||||
const currentYear = new Date().getFullYear();
|
||||
|
||||
// Fetch Pexels image/video
|
||||
useEffect(() => {
|
||||
@ -358,12 +359,13 @@ export default function Login() {
|
||||
</div>
|
||||
</SectionFullScreen>
|
||||
<div className='bg-black text-white flex flex-col text-center justify-center md:flex-row'>
|
||||
<p className='py-6 text-sm'>
|
||||
© 2024 <span>{title}</span>.{' '}
|
||||
{t('pages.login.footer.copyright', {
|
||||
defaultValue: '© All rights reserved',
|
||||
})}
|
||||
</p>
|
||||
<p className='py-6 text-sm'>
|
||||
{t('pages.login.footer.copyright', {
|
||||
year: currentYear,
|
||||
title,
|
||||
defaultValue: `© ${currentYear} ${title}. All rights reserved`,
|
||||
})}
|
||||
</p>
|
||||
<Link className='py-6 ml-4 text-sm' href='/privacy-policy/'>
|
||||
{t('pages.login.footer.privacy', { defaultValue: 'Privacy Policy' })}
|
||||
</Link>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user