Initial commit: Auto Spot frontend prototype
React + Vite frontend with bilingual EN/RU support, vehicle listings, detail pages with photo gallery, and dummy vehicle data. Spring Boot backend scaffold included. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
f7dddc220d
18
.gitignore
vendored
Normal file
18
.gitignore
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
# Frontend
|
||||
frontend/node_modules/
|
||||
frontend/dist/
|
||||
frontend/.env
|
||||
frontend/.env.local
|
||||
|
||||
# Backend
|
||||
backend/target/
|
||||
backend/.idea/
|
||||
backend/*.iml
|
||||
backend/.mvn/wrapper/maven-wrapper.jar
|
||||
|
||||
# General
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.log
|
||||
.env
|
||||
*.env.local
|
||||
44
backend/pom.xml
Normal file
44
backend/pom.xml
Normal file
@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>3.4.0</version>
|
||||
<relativePath/>
|
||||
</parent>
|
||||
|
||||
<groupId>com.example</groupId>
|
||||
<artifactId>backend</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<name>backend</name>
|
||||
<description>Spring Boot Backend</description>
|
||||
|
||||
<properties>
|
||||
<java.version>21</java.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
@ -0,0 +1,12 @@
|
||||
package com.example.backend;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class BackendApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(BackendApplication.class, args);
|
||||
}
|
||||
}
|
||||
2
backend/src/main/resources/application.properties
Normal file
2
backend/src/main/resources/application.properties
Normal file
@ -0,0 +1,2 @@
|
||||
spring.application.name=backend
|
||||
server.port=8080
|
||||
@ -0,0 +1,12 @@
|
||||
package com.example.backend;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class BackendApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
}
|
||||
24
frontend/.gitignore
vendored
Normal file
24
frontend/.gitignore
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
.DS_Store
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
16
frontend/README.md
Normal file
16
frontend/README.md
Normal file
@ -0,0 +1,16 @@
|
||||
# React + Vite
|
||||
|
||||
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
||||
|
||||
Currently, two official plugins are available:
|
||||
|
||||
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
|
||||
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
|
||||
|
||||
## React Compiler
|
||||
|
||||
The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
|
||||
|
||||
## Expanding the ESLint configuration
|
||||
|
||||
If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
|
||||
21
frontend/eslint.config.js
Normal file
21
frontend/eslint.config.js
Normal file
@ -0,0 +1,21 @@
|
||||
import js from '@eslint/js'
|
||||
import globals from 'globals'
|
||||
import reactHooks from 'eslint-plugin-react-hooks'
|
||||
import reactRefresh from 'eslint-plugin-react-refresh'
|
||||
import { defineConfig, globalIgnores } from 'eslint/config'
|
||||
|
||||
export default defineConfig([
|
||||
globalIgnores(['dist']),
|
||||
{
|
||||
files: ['**/*.{js,jsx}'],
|
||||
extends: [
|
||||
js.configs.recommended,
|
||||
reactHooks.configs.flat.recommended,
|
||||
reactRefresh.configs.vite,
|
||||
],
|
||||
languageOptions: {
|
||||
globals: globals.browser,
|
||||
parserOptions: { ecmaFeatures: { jsx: true } },
|
||||
},
|
||||
},
|
||||
])
|
||||
13
frontend/index.html
Normal file
13
frontend/index.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Auto Spot — Cars & Trucks</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.jsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
2533
frontend/package-lock.json
generated
Normal file
2533
frontend/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
29
frontend/package.json
Normal file
29
frontend/package.json
Normal file
@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "frontend",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"lint": "eslint .",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"react": "^19.2.6",
|
||||
"react-dom": "^19.2.6",
|
||||
"react-router-dom": "^7.17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^10.0.1",
|
||||
"@types/react": "^19.2.14",
|
||||
"@types/react-dom": "^19.2.3",
|
||||
"@vitejs/plugin-react": "^6.0.1",
|
||||
"eslint": "^10.3.0",
|
||||
"eslint-plugin-react-hooks": "^7.1.1",
|
||||
"eslint-plugin-react-refresh": "^0.5.2",
|
||||
"globals": "^17.6.0",
|
||||
"playwright": "^1.60.0",
|
||||
"vite": "^8.0.12"
|
||||
}
|
||||
}
|
||||
10
frontend/public/favicon.svg
Normal file
10
frontend/public/favicon.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<rect width="32" height="32" rx="7" fill="#f97316"/>
|
||||
<path d="M5 20h22" stroke="white" stroke-width="1.8" stroke-linecap="round"/>
|
||||
<path d="M6.5 20l2.8-5.5h13.4l2.8 5.5" stroke="white" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M10.5 14.5l1.5-3h8l1.5 3" stroke="white" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<line x1="7" y1="20" x2="7" y2="22" stroke="white" stroke-width="1.8" stroke-linecap="round"/>
|
||||
<line x1="25" y1="20" x2="25" y2="22" stroke="white" stroke-width="1.8" stroke-linecap="round"/>
|
||||
<circle cx="10" cy="22" r="2" fill="white"/>
|
||||
<circle cx="22" cy="22" r="2" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 737 B |
24
frontend/public/icons.svg
Normal file
24
frontend/public/icons.svg
Normal file
@ -0,0 +1,24 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<symbol id="bluesky-icon" viewBox="0 0 16 17">
|
||||
<g clip-path="url(#bluesky-clip)"><path fill="#08060d" d="M7.75 7.735c-.693-1.348-2.58-3.86-4.334-5.097-1.68-1.187-2.32-.981-2.74-.79C.188 2.065.1 2.812.1 3.251s.241 3.602.398 4.13c.52 1.744 2.367 2.333 4.07 2.145-2.495.37-4.71 1.278-1.805 4.512 3.196 3.309 4.38-.71 4.987-2.746.608 2.036 1.307 5.91 4.93 2.746 2.72-2.746.747-4.143-1.747-4.512 1.702.189 3.55-.4 4.07-2.145.156-.528.397-3.691.397-4.13s-.088-1.186-.575-1.406c-.42-.19-1.06-.395-2.741.79-1.755 1.24-3.64 3.752-4.334 5.099"/></g>
|
||||
<defs><clipPath id="bluesky-clip"><path fill="#fff" d="M.1.85h15.3v15.3H.1z"/></clipPath></defs>
|
||||
</symbol>
|
||||
<symbol id="discord-icon" viewBox="0 0 20 19">
|
||||
<path fill="#08060d" d="M16.224 3.768a14.5 14.5 0 0 0-3.67-1.153c-.158.286-.343.67-.47.976a13.5 13.5 0 0 0-4.067 0c-.128-.306-.317-.69-.476-.976A14.4 14.4 0 0 0 3.868 3.77C1.546 7.28.916 10.703 1.231 14.077a14.7 14.7 0 0 0 4.5 2.306q.545-.748.965-1.587a9.5 9.5 0 0 1-1.518-.74q.191-.14.372-.293c2.927 1.369 6.107 1.369 8.999 0q.183.152.372.294-.723.437-1.52.74.418.838.963 1.588a14.6 14.6 0 0 0 4.504-2.308c.37-3.911-.63-7.302-2.644-10.309m-9.13 8.234c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.894 0 1.614.82 1.599 1.82.001 1-.705 1.82-1.6 1.82m5.91 0c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.893 0 1.614.82 1.599 1.82 0 1-.706 1.82-1.6 1.82"/>
|
||||
</symbol>
|
||||
<symbol id="documentation-icon" viewBox="0 0 21 20">
|
||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="m15.5 13.333 1.533 1.322c.645.555.967.833.967 1.178s-.322.623-.967 1.179L15.5 18.333m-3.333-5-1.534 1.322c-.644.555-.966.833-.966 1.178s.322.623.966 1.179l1.534 1.321"/>
|
||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M17.167 10.836v-4.32c0-1.41 0-2.117-.224-2.68-.359-.906-1.118-1.621-2.08-1.96-.599-.21-1.349-.21-2.848-.21-2.623 0-3.935 0-4.983.369-1.684.591-3.013 1.842-3.641 3.428C3 6.449 3 7.684 3 10.154v2.122c0 2.558 0 3.838.706 4.726q.306.383.713.671c.76.536 1.79.64 3.581.66"/>
|
||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M3 10a2.78 2.78 0 0 1 2.778-2.778c.555 0 1.209.097 1.748-.047.48-.129.854-.503.982-.982.145-.54.048-1.194.048-1.749a2.78 2.78 0 0 1 2.777-2.777"/>
|
||||
</symbol>
|
||||
<symbol id="github-icon" viewBox="0 0 19 19">
|
||||
<path fill="#08060d" fill-rule="evenodd" d="M9.356 1.85C5.05 1.85 1.57 5.356 1.57 9.694a7.84 7.84 0 0 0 5.324 7.44c.387.079.528-.168.528-.376 0-.182-.013-.805-.013-1.454-2.165.467-2.616-.935-2.616-.935-.349-.91-.864-1.143-.864-1.143-.71-.48.051-.48.051-.48.787.051 1.2.805 1.2.805.695 1.194 1.817.857 2.268.649.064-.507.27-.857.49-1.052-1.728-.182-3.545-.857-3.545-3.87 0-.857.31-1.558.8-2.104-.078-.195-.349-1 .077-2.078 0 0 .657-.208 2.14.805a7.5 7.5 0 0 1 1.946-.26c.657 0 1.328.092 1.946.26 1.483-1.013 2.14-.805 2.14-.805.426 1.078.155 1.883.078 2.078.502.546.799 1.247.799 2.104 0 3.013-1.818 3.675-3.558 3.87.284.247.528.714.528 1.454 0 1.052-.012 1.896-.012 2.156 0 .208.142.455.528.377a7.84 7.84 0 0 0 5.324-7.441c.013-4.338-3.48-7.844-7.773-7.844" clip-rule="evenodd"/>
|
||||
</symbol>
|
||||
<symbol id="social-icon" viewBox="0 0 20 20">
|
||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M12.5 6.667a4.167 4.167 0 1 0-8.334 0 4.167 4.167 0 0 0 8.334 0"/>
|
||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M2.5 16.667a5.833 5.833 0 0 1 8.75-5.053m3.837.474.513 1.035c.07.144.257.282.414.309l.93.155c.596.1.736.536.307.965l-.723.73a.64.64 0 0 0-.152.531l.207.903c.164.715-.213.991-.84.618l-.872-.52a.63.63 0 0 0-.577 0l-.872.52c-.624.373-1.003.094-.84-.618l.207-.903a.64.64 0 0 0-.152-.532l-.723-.729c-.426-.43-.289-.864.306-.964l.93-.156a.64.64 0 0 0 .412-.31l.513-1.034c.28-.562.735-.562 1.012 0"/>
|
||||
</symbol>
|
||||
<symbol id="x-icon" viewBox="0 0 19 19">
|
||||
<path fill="#08060d" fill-rule="evenodd" d="M1.893 1.98c.052.072 1.245 1.769 2.653 3.77l2.892 4.114c.183.261.333.48.333.486s-.068.089-.152.183l-.522.593-.765.867-3.597 4.087c-.375.426-.734.834-.798.905a1 1 0 0 0-.118.148c0 .01.236.017.664.017h.663l.729-.83c.4-.457.796-.906.879-.999a692 692 0 0 0 1.794-2.038c.034-.037.301-.34.594-.675l.551-.624.345-.392a7 7 0 0 1 .34-.374c.006 0 .93 1.306 2.052 2.903l2.084 2.965.045.063h2.275c1.87 0 2.273-.003 2.266-.021-.008-.02-1.098-1.572-3.894-5.547-2.013-2.862-2.28-3.246-2.273-3.266.008-.019.282-.332 2.085-2.38l2-2.274 1.567-1.782c.022-.028-.016-.03-.65-.03h-.674l-.3.342a871 871 0 0 1-1.782 2.025c-.067.075-.405.458-.75.852a100 100 0 0 1-.803.91c-.148.172-.299.344-.99 1.127-.304.343-.32.358-.345.327-.015-.019-.904-1.282-1.976-2.808L6.365 1.85H1.8zm1.782.91 8.078 11.294c.772 1.08 1.413 1.973 1.425 1.984.016.017.241.02 1.05.017l1.03-.004-2.694-3.766L7.796 5.75 5.722 2.852l-1.039-.004-1.039-.004z" clip-rule="evenodd"/>
|
||||
</symbol>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
403
frontend/src/App.css
Normal file
403
frontend/src/App.css
Normal file
@ -0,0 +1,403 @@
|
||||
/* ── Layout ── */
|
||||
.site { display: flex; flex-direction: column; min-height: 100vh; }
|
||||
.main-content { flex: 1; display: flex; flex-direction: column; }
|
||||
|
||||
/* ── Navbar ── */
|
||||
.navbar {
|
||||
background: var(--navy);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
box-shadow: 0 2px 8px rgba(0,0,0,.3);
|
||||
}
|
||||
.nav-inner {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 24px;
|
||||
height: 64px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 40px;
|
||||
}
|
||||
.logo { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; flex-shrink: 0; text-decoration: none; }
|
||||
.logo-auto { color: #fff; }
|
||||
.logo-spot { color: var(--orange); }
|
||||
.nav-links { display: flex; gap: 28px; flex: 1; }
|
||||
.nav-links a { color: #94a3b8; font-size: 15px; font-weight: 500; transition: color .2s; text-decoration: none; }
|
||||
.nav-links a:hover { color: #fff; }
|
||||
.lang-toggle {
|
||||
background: transparent;
|
||||
border: 1px solid #475569;
|
||||
color: #94a3b8;
|
||||
border-radius: 6px;
|
||||
padding: 6px 14px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: border-color .2s, color .2s;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }
|
||||
|
||||
/* ── Hero ── */
|
||||
.hero {
|
||||
position: relative;
|
||||
min-height: 520px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
|
||||
overflow: hidden;
|
||||
}
|
||||
.hero::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
|
||||
}
|
||||
.hero-content {
|
||||
position: relative;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 24px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
.hero-content h1 {
|
||||
font-size: clamp(36px, 5vw, 60px);
|
||||
font-weight: 800;
|
||||
color: #fff;
|
||||
letter-spacing: -1.5px;
|
||||
line-height: 1.1;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.hero-content p {
|
||||
font-size: clamp(16px, 2vw, 20px);
|
||||
color: #94a3b8;
|
||||
max-width: 580px;
|
||||
margin: 0 auto 40px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
|
||||
|
||||
/* ── Buttons ── */
|
||||
.btn-primary {
|
||||
background: var(--orange);
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
padding: 14px 32px;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: background .2s, transform .1s;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
}
|
||||
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
|
||||
.btn-ghost {
|
||||
background: transparent;
|
||||
color: #fff;
|
||||
border: 1.5px solid rgba(255,255,255,.35);
|
||||
border-radius: 8px;
|
||||
padding: 14px 32px;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: border-color .2s, background .2s;
|
||||
}
|
||||
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
|
||||
|
||||
/* ── Stats bar ── */
|
||||
.stats-bar {
|
||||
background: var(--navy-light);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
.stat {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 24px 48px;
|
||||
border-right: 1px solid rgba(255,255,255,.06);
|
||||
}
|
||||
.stat:last-child { border-right: none; }
|
||||
.stat-num { font-size: 28px; font-weight: 700; color: var(--orange); letter-spacing: -0.5px; }
|
||||
.stat-label { font-size: 13px; color: #64748b; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
|
||||
|
||||
/* ── Listings ── */
|
||||
.listings-section {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 64px 24px;
|
||||
width: 100%;
|
||||
}
|
||||
.section-title {
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
color: var(--navy);
|
||||
letter-spacing: -0.5px;
|
||||
margin-bottom: 36px;
|
||||
text-align: center;
|
||||
}
|
||||
.listings-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
/* ── Card ── */
|
||||
.card {
|
||||
background: var(--card-bg);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow);
|
||||
transition: transform .2s, box-shadow .2s;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
|
||||
.card-img-wrap { position: relative; overflow: hidden; }
|
||||
.card-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform .3s; }
|
||||
.card:hover .card-img-wrap img { transform: scale(1.04); }
|
||||
.badge {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
left: 12px;
|
||||
border-radius: 6px;
|
||||
padding: 4px 10px;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
.badge-car { background: #dbeafe; color: #1d4ed8; }
|
||||
.badge-truck { background: #fef3c7; color: #b45309; }
|
||||
.badge-year { background: #f1f5f9; color: #475569; }
|
||||
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
|
||||
.card-title { font-size: 18px; font-weight: 700; color: var(--navy); }
|
||||
.card-price { font-size: 22px; font-weight: 800; color: var(--orange); }
|
||||
.card-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; margin-bottom: 4px; }
|
||||
.btn-card {
|
||||
margin-top: auto;
|
||||
width: 100%;
|
||||
background: var(--navy);
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: 7px;
|
||||
padding: 11px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: background .2s;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
display: block;
|
||||
}
|
||||
.btn-card:hover { background: #1e3a5f; }
|
||||
|
||||
/* ── Why section ── */
|
||||
.why-section { background: var(--navy); padding: 64px 24px; text-align: center; }
|
||||
.why-section .section-title { color: #fff; }
|
||||
.why-grid {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
||||
gap: 32px;
|
||||
}
|
||||
.why-card { padding: 8px; }
|
||||
.why-icon {
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
background: rgba(249,115,22,.15);
|
||||
color: var(--orange);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
margin: 0 auto 16px;
|
||||
}
|
||||
.why-card h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
|
||||
.why-card p { color: #64748b; font-size: 15px; line-height: 1.6; }
|
||||
|
||||
/* ── Footer ── */
|
||||
.footer { background: #020617; color: #475569; text-align: center; padding: 24px; font-size: 14px; }
|
||||
|
||||
/* ── Vehicle Detail Page ── */
|
||||
.detail-page { display: flex; flex-direction: column; }
|
||||
|
||||
.detail-back-bar {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 20px 24px 16px;
|
||||
width: 100%;
|
||||
}
|
||||
.detail-back-btn {
|
||||
color: var(--text-muted);
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
text-decoration: none;
|
||||
transition: color .2s;
|
||||
}
|
||||
.detail-back-btn:hover { color: var(--navy); }
|
||||
|
||||
.detail-content {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 24px 64px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* ── Photo Gallery ── */
|
||||
.gallery { margin-bottom: 36px; }
|
||||
|
||||
.gallery-main {
|
||||
border-radius: 14px;
|
||||
overflow: hidden;
|
||||
background: #1e293b;
|
||||
margin-bottom: 10px;
|
||||
height: 480px;
|
||||
}
|
||||
.gallery-main img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.gallery-thumbs { display: flex; gap: 10px; }
|
||||
|
||||
.thumb-btn {
|
||||
width: 130px;
|
||||
height: 80px;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
border: 2px solid transparent;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
flex-shrink: 0;
|
||||
transition: border-color .15s, opacity .15s;
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
|
||||
.thumb-btn.active { border-color: var(--orange); }
|
||||
.thumb-btn:hover:not(.active) { opacity: 0.72; }
|
||||
|
||||
/* ── Detail head ── */
|
||||
.detail-head {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
gap: 24px;
|
||||
margin-bottom: 28px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.detail-badges { display: flex; gap: 8px; margin-bottom: 12px; }
|
||||
.detail-title {
|
||||
font-size: clamp(28px, 4vw, 42px);
|
||||
font-weight: 800;
|
||||
color: var(--navy);
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
.detail-price-block { text-align: right; flex-shrink: 0; padding-top: 4px; }
|
||||
.detail-price { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--orange); }
|
||||
|
||||
/* ── Spec Table (2-col) ── */
|
||||
.spec-table {
|
||||
display: grid;
|
||||
grid-template-columns: 190px 1fr;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
.spec-label {
|
||||
padding: 14px 20px;
|
||||
background: #f8fafc;
|
||||
border-right: 1px solid var(--border);
|
||||
border-bottom: 1px solid var(--border);
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
color: var(--text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.spec-value {
|
||||
padding: 14px 20px;
|
||||
background: var(--card-bg);
|
||||
border-bottom: 1px solid var(--border);
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
color: var(--navy);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.spec-table > *:nth-last-child(-n+2) { border-bottom: none; }
|
||||
|
||||
/* ── Description ── */
|
||||
.detail-description {
|
||||
font-size: 16px;
|
||||
line-height: 1.8;
|
||||
color: var(--text);
|
||||
margin-bottom: 32px;
|
||||
max-width: 760px;
|
||||
}
|
||||
|
||||
/* ── Seller card ── */
|
||||
.seller-card {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 24px;
|
||||
background: var(--card-bg);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
padding: 24px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.seller-info { display: flex; align-items: center; gap: 16px; }
|
||||
.seller-avatar {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: var(--navy);
|
||||
color: var(--orange);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.seller-name { font-size: 16px; font-weight: 700; color: var(--navy); }
|
||||
.seller-phone { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
|
||||
.contact-btn { padding: 12px 28px; font-size: 15px; }
|
||||
|
||||
/* ── Not Found ── */
|
||||
.not-found {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
padding: 80px 24px;
|
||||
text-align: center;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* ── Responsive ── */
|
||||
@media (max-width: 640px) {
|
||||
.stat { padding: 18px 24px; }
|
||||
.stat-num { font-size: 22px; }
|
||||
.listings-grid { grid-template-columns: 1fr; }
|
||||
.nav-links { display: none; }
|
||||
.detail-head { flex-direction: column; }
|
||||
.detail-price-block { text-align: left; }
|
||||
.seller-card { flex-direction: column; align-items: flex-start; }
|
||||
.gallery-main { height: 260px; }
|
||||
.spec-table { grid-template-columns: 140px 1fr; }
|
||||
}
|
||||
26
frontend/src/App.jsx
Normal file
26
frontend/src/App.jsx
Normal file
@ -0,0 +1,26 @@
|
||||
import { BrowserRouter, Routes, Route } from 'react-router-dom'
|
||||
import { LangProvider } from './context/LangContext.jsx'
|
||||
import Navbar from './components/Navbar.jsx'
|
||||
import Footer from './components/Footer.jsx'
|
||||
import HomePage from './pages/HomePage.jsx'
|
||||
import VehicleDetailPage from './pages/VehicleDetailPage.jsx'
|
||||
import './App.css'
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<LangProvider>
|
||||
<BrowserRouter>
|
||||
<div className="site">
|
||||
<Navbar />
|
||||
<main className="main-content">
|
||||
<Routes>
|
||||
<Route path="/" element={<HomePage />} />
|
||||
<Route path="/vehicle/:id" element={<VehicleDetailPage />} />
|
||||
</Routes>
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
</BrowserRouter>
|
||||
</LangProvider>
|
||||
)
|
||||
}
|
||||
BIN
frontend/src/assets/hero.png
Normal file
BIN
frontend/src/assets/hero.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
1
frontend/src/assets/react.svg
Normal file
1
frontend/src/assets/react.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
1
frontend/src/assets/vite.svg
Normal file
1
frontend/src/assets/vite.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 8.5 KiB |
11
frontend/src/components/Footer.jsx
Normal file
11
frontend/src/components/Footer.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import { useT } from '../context/LangContext.jsx'
|
||||
|
||||
export default function Footer() {
|
||||
const t = useT()
|
||||
|
||||
return (
|
||||
<footer className="footer">
|
||||
<p>{t('footer')}</p>
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
18
frontend/src/components/Hero.jsx
Normal file
18
frontend/src/components/Hero.jsx
Normal file
@ -0,0 +1,18 @@
|
||||
import { useT } from '../context/LangContext.jsx'
|
||||
|
||||
export default function Hero() {
|
||||
const t = useT()
|
||||
|
||||
return (
|
||||
<section className="hero">
|
||||
<div className="hero-content">
|
||||
<h1>{t('hero.title')}</h1>
|
||||
<p>{t('hero.subtitle')}</p>
|
||||
<div className="hero-btns">
|
||||
<button className="btn-primary">{t('hero.cta')}</button>
|
||||
<button className="btn-ghost">{t('hero.sell')}</button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
41
frontend/src/components/ListingCard.jsx
Normal file
41
frontend/src/components/ListingCard.jsx
Normal file
@ -0,0 +1,41 @@
|
||||
import { Link } from 'react-router-dom'
|
||||
import { useT } from '../context/LangContext.jsx'
|
||||
|
||||
function imgFallback(make, model) {
|
||||
return (e) => {
|
||||
e.target.onerror = null
|
||||
e.target.src = `https://placehold.co/800x480/1e293b/ffffff?text=${encodeURIComponent(make + ' ' + model)}`
|
||||
}
|
||||
}
|
||||
|
||||
export default function ListingCard({ vehicle }) {
|
||||
const t = useT()
|
||||
|
||||
return (
|
||||
<div className="card">
|
||||
<div className="card-img-wrap">
|
||||
<img
|
||||
src={vehicle.photos[0]}
|
||||
alt={`${vehicle.year} ${vehicle.make} ${vehicle.model}`}
|
||||
loading="lazy"
|
||||
onError={imgFallback(vehicle.make, vehicle.model)}
|
||||
/>
|
||||
<span className={`badge badge-${vehicle.type}`}>
|
||||
{t(`vehicle.type.${vehicle.type}`)}
|
||||
</span>
|
||||
</div>
|
||||
<div className="card-body">
|
||||
<div className="card-title">{vehicle.year} {vehicle.make} {vehicle.model}</div>
|
||||
<div className="card-price">€{vehicle.price.toLocaleString()}</div>
|
||||
<div className="card-meta">
|
||||
<span>{vehicle.mileage.toLocaleString()} km</span>
|
||||
<span>{t(`vehicle.fuelType.${vehicle.fuelType}`)}</span>
|
||||
<span>{vehicle.location}</span>
|
||||
</div>
|
||||
<Link to={`/vehicle/${vehicle.id}`} className="btn-card">
|
||||
{t('listings.viewDetails')}
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
32
frontend/src/components/Navbar.jsx
Normal file
32
frontend/src/components/Navbar.jsx
Normal file
@ -0,0 +1,32 @@
|
||||
import { Link } from 'react-router-dom'
|
||||
import { useLang, useT } from '../context/LangContext.jsx'
|
||||
import { LANGS } from '../services/i18nService.js'
|
||||
|
||||
export default function Navbar() {
|
||||
const { lang, setLang } = useLang()
|
||||
const t = useT()
|
||||
const nextLang = LANGS.find(l => l !== lang)
|
||||
|
||||
return (
|
||||
<nav className="navbar">
|
||||
<div className="nav-inner">
|
||||
<Link to="/" className="logo">
|
||||
<span className="logo-auto">Auto</span><span className="logo-spot">Spot</span>
|
||||
</Link>
|
||||
<ul className="nav-links">
|
||||
<li><Link to="/">{t('nav.home')}</Link></li>
|
||||
<li><Link to="/?type=car">{t('nav.cars')}</Link></li>
|
||||
<li><Link to="/?type=truck">{t('nav.trucks')}</Link></li>
|
||||
<li><a href="#contact">{t('nav.contact')}</a></li>
|
||||
</ul>
|
||||
<button
|
||||
className="lang-toggle"
|
||||
onClick={() => setLang(nextLang)}
|
||||
aria-label="Switch language"
|
||||
>
|
||||
{nextLang?.toUpperCase()}
|
||||
</button>
|
||||
</div>
|
||||
</nav>
|
||||
)
|
||||
}
|
||||
28
frontend/src/components/StatsBar.jsx
Normal file
28
frontend/src/components/StatsBar.jsx
Normal file
@ -0,0 +1,28 @@
|
||||
import { useT } from '../context/LangContext.jsx'
|
||||
import { getStats } from '../services/vehicleService.js'
|
||||
|
||||
export default function StatsBar() {
|
||||
const t = useT()
|
||||
const stats = getStats()
|
||||
|
||||
return (
|
||||
<div className="stats-bar">
|
||||
<div className="stat">
|
||||
<span className="stat-num">{stats.cars.toLocaleString()}</span>
|
||||
<span className="stat-label">{t('stats.cars')}</span>
|
||||
</div>
|
||||
<div className="stat">
|
||||
<span className="stat-num">{stats.trucks.toLocaleString()}</span>
|
||||
<span className="stat-label">{t('stats.trucks')}</span>
|
||||
</div>
|
||||
<div className="stat">
|
||||
<span className="stat-num">{stats.sellers.toLocaleString()}</span>
|
||||
<span className="stat-label">{t('stats.sellers')}</span>
|
||||
</div>
|
||||
<div className="stat">
|
||||
<span className="stat-num">{stats.rating} ★</span>
|
||||
<span className="stat-label">{t('stats.rating')}</span>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
26
frontend/src/components/WhyUs.jsx
Normal file
26
frontend/src/components/WhyUs.jsx
Normal file
@ -0,0 +1,26 @@
|
||||
import { useT } from '../context/LangContext.jsx'
|
||||
|
||||
const WHY_ITEMS = [
|
||||
{ key: 'verified', icon: '✓' },
|
||||
{ key: 'price', icon: '€' },
|
||||
{ key: 'contact', icon: '✉' },
|
||||
]
|
||||
|
||||
export default function WhyUs() {
|
||||
const t = useT()
|
||||
|
||||
return (
|
||||
<section className="why-section" id="contact">
|
||||
<h2 className="section-title">{t('whyUs.title')}</h2>
|
||||
<div className="why-grid">
|
||||
{WHY_ITEMS.map(({ key, icon }) => (
|
||||
<div className="why-card" key={key}>
|
||||
<div className="why-icon">{icon}</div>
|
||||
<h3>{t(`whyUs.${key}.title`)}</h3>
|
||||
<p>{t(`whyUs.${key}.desc`)}</p>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
24
frontend/src/context/LangContext.jsx
Normal file
24
frontend/src/context/LangContext.jsx
Normal file
@ -0,0 +1,24 @@
|
||||
import { createContext, useCallback, useContext, useState } from 'react'
|
||||
import { DEFAULT_LANG, t as translate } from '../services/i18nService.js'
|
||||
|
||||
const LangContext = createContext(null)
|
||||
|
||||
export function LangProvider({ children }) {
|
||||
const [lang, setLang] = useState(DEFAULT_LANG)
|
||||
return (
|
||||
<LangContext.Provider value={{ lang, setLang }}>
|
||||
{children}
|
||||
</LangContext.Provider>
|
||||
)
|
||||
}
|
||||
|
||||
export function useLang() {
|
||||
const ctx = useContext(LangContext)
|
||||
if (!ctx) throw new Error('useLang must be used within LangProvider')
|
||||
return ctx
|
||||
}
|
||||
|
||||
export function useT() {
|
||||
const { lang } = useLang()
|
||||
return useCallback((key) => translate(key, lang), [lang])
|
||||
}
|
||||
158
frontend/src/data/vehicles.js
Normal file
158
frontend/src/data/vehicles.js
Normal file
@ -0,0 +1,158 @@
|
||||
export const vehicles = [
|
||||
{
|
||||
id: 1,
|
||||
type: 'car',
|
||||
year: 2022,
|
||||
make: 'Toyota',
|
||||
model: 'Camry',
|
||||
price: 24900,
|
||||
mileage: 28000,
|
||||
fuelType: 'petrol',
|
||||
transmission: 'automatic',
|
||||
color: 'Pearl White',
|
||||
engineCC: 2500,
|
||||
doors: 4,
|
||||
location: 'Vilnius',
|
||||
seller: 'Tomas K.',
|
||||
phone: '+370 612 34 567',
|
||||
photos: [
|
||||
'https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1200&q=80',
|
||||
],
|
||||
description: {
|
||||
en: 'Slide into the driver\'s seat and feel right at home. This 2022 Toyota Camry was owned by a single careful driver who clearly took pride in it — full dealer service history, a spotless interior, and a bonus set of winter tyres included in the price. The 2.5L petrol engine delivers effortless power whether you\'re navigating city traffic or stretching your legs on the motorway. Sunroof, leather seats, non-smoker. One of the most reliable cars money can buy — and this example proves it.',
|
||||
ru: 'Сядьте за руль и почувствуйте себя как дома. Этот Toyota Camry 2022 года принадлежал одному аккуратному водителю — полная история обслуживания у официального дилера, безупречный салон и в подарок комплект зимней резины. Двигатель 2.5L уверенно справляется как с городским трафиком, так и с дальними поездками. Люк, кожаный салон, не курили. Один из самых надёжных автомобилей за свои деньги — и этот экземпляр тому подтверждение.',
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
type: 'car',
|
||||
year: 2021,
|
||||
make: 'BMW',
|
||||
model: '5 Series',
|
||||
price: 42500,
|
||||
mileage: 35000,
|
||||
fuelType: 'diesel',
|
||||
transmission: 'automatic',
|
||||
color: 'Phytonic Blue',
|
||||
engineCC: 3000,
|
||||
doors: 4,
|
||||
location: 'Kaunas',
|
||||
seller: 'Rytis M.',
|
||||
phone: '+370 698 76 543',
|
||||
photos: [
|
||||
'https://images.unsplash.com/photo-1555215695-3004980ad54e?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80',
|
||||
],
|
||||
description: {
|
||||
en: 'This is the BMW 5 Series that turns heads and keeps you smiling. The 530d M Sport in striking Phytonic Blue is the complete package — silky 3.0L diesel power, adaptive cruise control, panoramic sunroof, and every luxury feature you\'d expect from a German exec. Just 35,000 km from new, serviced on schedule at an authorised BMW dealer, and ready to impress from day one. Drive it once and you\'ll understand why.',
|
||||
ru: 'Это тот BMW 5 серии, который привлекает взгляды и не даёт перестать улыбаться. 530d M Sport в притягательном Phytonic Blue — это всё в одном: плавный 3.0L дизель, адаптивный круиз, панорамная крыша и весь люкс, который вы ожидаете от немецкого седана. Всего 35 000 км, обслуживание по регламенту у официального дилера BMW. Проедьте один раз — и поймёте почему.',
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
type: 'car',
|
||||
year: 2023,
|
||||
make: 'Mercedes',
|
||||
model: 'C-Class',
|
||||
price: 51000,
|
||||
mileage: 12000,
|
||||
fuelType: 'petrol',
|
||||
transmission: 'automatic',
|
||||
color: 'Polar White',
|
||||
engineCC: 2000,
|
||||
doors: 4,
|
||||
location: 'Klaipėda',
|
||||
seller: 'Linas V.',
|
||||
phone: '+370 614 55 123',
|
||||
photos: [
|
||||
'https://images.unsplash.com/photo-1563720223185-11003d516935?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1555215695-3004980ad54e?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=1200&q=80',
|
||||
],
|
||||
description: {
|
||||
en: 'Barely broken in and already stopping traffic. This 2023 Mercedes C-Class W206 is everything the brochure promises — and then some. AMG Line styling gives it an aggressive, sculpted edge, while inside you get a digital MBUX cockpit, Burmester sound system, and heated seats wrapped in fine leather. Just 12,000 km and still under full manufacturer warranty. Buy new and lose €10k the moment you drive off — or buy this and keep the smile.',
|
||||
ru: 'Едва обкатан — а уже останавливает взгляды. Mercedes C-Class W206 2023 года — это всё, что обещает брошюра, и даже больше. Внешность AMG Line с агрессивными линиями, внутри — цифровая кабина MBUX, звуковая система Burmester, подогреваемые кожаные сиденья. Всего 12 000 км, гарантия производителя в силе. Купите новый и потеряйте €10 000 при выезде — или возьмите этот и сохраните улыбку.',
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
type: 'truck',
|
||||
year: 2020,
|
||||
make: 'Ford',
|
||||
model: 'F-150',
|
||||
price: 38700,
|
||||
mileage: 52000,
|
||||
fuelType: 'petrol',
|
||||
transmission: 'automatic',
|
||||
color: 'Ingot Silver',
|
||||
engineCC: 3500,
|
||||
doors: 4,
|
||||
location: 'Vilnius',
|
||||
seller: 'Jonas P.',
|
||||
phone: '+370 622 11 222',
|
||||
photos: [
|
||||
'https://images.unsplash.com/photo-1590362891991-f776e747a588?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80',
|
||||
],
|
||||
description: {
|
||||
en: 'When the job demands more, the F-150 delivers. This 2020 Ford F-150 XLT runs a twin-turbocharged 3.5L EcoBoost that makes light work of heavy loads — 4WD traction for when the road runs out, factory tow package, trailer hitch, and a lined bed ready for action. Ingot Silver finish is clean and rust-free. Full service history on record. Whatever you throw at it, it handles. A serious truck for serious work.',
|
||||
ru: 'Когда работа требует большего — F-150 справляется. Ford F-150 XLT 2020 года с двойным турбонаддувом 3.5L EcoBoost легко справляется с тяжёлыми грузами: полный привод для бездорожья, заводской пакет буксировки, фаркоп и вкладыш кузова. Ingot Silver без единой ржавчины. Полная история обслуживания. Что бы вы ни поставили перед ним — справится. Серьёзный грузовик для серьёзной работы.',
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
type: 'truck',
|
||||
year: 2022,
|
||||
make: 'RAM',
|
||||
model: '1500',
|
||||
price: 44200,
|
||||
mileage: 21000,
|
||||
fuelType: 'petrol',
|
||||
transmission: 'automatic',
|
||||
color: 'Flame Red',
|
||||
engineCC: 5700,
|
||||
doors: 4,
|
||||
location: 'Panevėžys',
|
||||
seller: 'Mindaugas J.',
|
||||
phone: '+370 688 44 321',
|
||||
photos: [
|
||||
'https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1590362891991-f776e747a588?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1200&q=80',
|
||||
],
|
||||
description: {
|
||||
en: 'There are pickup trucks — and then there\'s this. The 2022 RAM 1500 Big Horn with the Hemi V8 5.7L is a truck that commands respect on any road. Air suspension soaks up the bumps for a ride that feels more luxury than utility, while the 12" touchscreen, remote start, and heated steering wheel keep the driver happy in any weather. At just 21,000 km it\'s barely been used. Flame Red — unmistakable on the road and unforgettable to drive.',
|
||||
ru: 'Есть пикапы — а есть этот. RAM 1500 Big Horn 2022 года с Hemi V8 5.7L вызывает уважение на любой дороге. Пневматическая подвеска смягчает неровности так, что поездка ощущается скорее как люкс, чем как работа, а 12-дюймовый сенсорный экран, дистанционный запуск и подогрев руля делают водителя счастливым в любую погоду. Всего 21 000 км — едва ездил. Flame Red — незаметить невозможно.',
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
type: 'car',
|
||||
year: 2023,
|
||||
make: 'Volkswagen',
|
||||
model: 'Golf',
|
||||
price: 28300,
|
||||
mileage: 8000,
|
||||
fuelType: 'petrol',
|
||||
transmission: 'manual',
|
||||
color: 'Deep Black',
|
||||
engineCC: 1500,
|
||||
doors: 5,
|
||||
location: 'Kaunas',
|
||||
seller: 'Kristina B.',
|
||||
phone: '+370 677 88 999',
|
||||
photos: [
|
||||
'https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1200&q=80',
|
||||
'https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=1200&q=80',
|
||||
],
|
||||
description: {
|
||||
en: 'Fresh from the factory and barely broken in — this 2023 Volkswagen Golf 8 in Deep Black pearl is the ideal everyday car done right. Full LED headlights that actually light up the road, adaptive cruise control, and a digital instrument cluster that makes the cabin feel genuinely modern. At just 8,000 km it\'s essentially new without the new car price tag. One owner, zero damage, buy with complete confidence.',
|
||||
ru: 'Свежий с завода и едва обкатанный — Volkswagen Golf 8 2023 года в Deep Black — это повседневный автомобиль, сделанный правильно. Полные LED-фары, которые действительно освещают дорогу, адаптивный круиз-контроль и цифровая приборная панель, делающая салон по-настоящему современным. Всего 8 000 км — практически новый без ценника нового автомобиля. Один владелец, без повреждений, покупайте с полной уверенностью.',
|
||||
},
|
||||
},
|
||||
]
|
||||
25
frontend/src/index.css
Normal file
25
frontend/src/index.css
Normal file
@ -0,0 +1,25 @@
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
:root {
|
||||
--navy: #0f172a;
|
||||
--navy-light: #1e293b;
|
||||
--orange: #f97316;
|
||||
--orange-dark: #ea6c0a;
|
||||
--bg: #f1f5f9;
|
||||
--card-bg: #ffffff;
|
||||
--text: #334155;
|
||||
--text-muted: #64748b;
|
||||
--border: #e2e8f0;
|
||||
--shadow: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
|
||||
--shadow-lg: 0 10px 25px -5px rgba(0,0,0,.12), 0 4px 10px -2px rgba(0,0,0,.06);
|
||||
font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
|
||||
color: var(--text);
|
||||
background: var(--bg);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
body { min-height: 100vh; }
|
||||
#root { display: flex; flex-direction: column; min-height: 100vh; }
|
||||
a { text-decoration: none; color: inherit; }
|
||||
ul { list-style: none; }
|
||||
img { display: block; max-width: 100%; }
|
||||
10
frontend/src/main.jsx
Normal file
10
frontend/src/main.jsx
Normal file
@ -0,0 +1,10 @@
|
||||
import { StrictMode } from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import './index.css'
|
||||
import App from './App.jsx'
|
||||
|
||||
createRoot(document.getElementById('root')).render(
|
||||
<StrictMode>
|
||||
<App />
|
||||
</StrictMode>,
|
||||
)
|
||||
28
frontend/src/pages/HomePage.jsx
Normal file
28
frontend/src/pages/HomePage.jsx
Normal file
@ -0,0 +1,28 @@
|
||||
import { useT } from '../context/LangContext.jsx'
|
||||
import { getFeaturedVehicles } from '../services/vehicleService.js'
|
||||
import Hero from '../components/Hero.jsx'
|
||||
import StatsBar from '../components/StatsBar.jsx'
|
||||
import ListingCard from '../components/ListingCard.jsx'
|
||||
import WhyUs from '../components/WhyUs.jsx'
|
||||
|
||||
const featured = getFeaturedVehicles()
|
||||
|
||||
export default function HomePage() {
|
||||
const t = useT()
|
||||
|
||||
return (
|
||||
<>
|
||||
<Hero />
|
||||
<StatsBar />
|
||||
<section className="listings-section">
|
||||
<h2 className="section-title">{t('listings.featured')}</h2>
|
||||
<div className="listings-grid">
|
||||
{featured.map(v => (
|
||||
<ListingCard key={v.id} vehicle={v} />
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
<WhyUs />
|
||||
</>
|
||||
)
|
||||
}
|
||||
127
frontend/src/pages/VehicleDetailPage.jsx
Normal file
127
frontend/src/pages/VehicleDetailPage.jsx
Normal file
@ -0,0 +1,127 @@
|
||||
import { useState, useEffect } from 'react'
|
||||
import { useParams, Link } from 'react-router-dom'
|
||||
import { useLang, useT } from '../context/LangContext.jsx'
|
||||
import { getVehicleById } from '../services/vehicleService.js'
|
||||
|
||||
function imgFallback(make, model) {
|
||||
return (e) => {
|
||||
e.target.onerror = null
|
||||
e.target.src = `https://placehold.co/1200x480/1e293b/ffffff?text=${encodeURIComponent(make + ' ' + model)}`
|
||||
}
|
||||
}
|
||||
|
||||
export default function VehicleDetailPage() {
|
||||
const { id } = useParams()
|
||||
const { lang } = useLang()
|
||||
const t = useT()
|
||||
const vehicle = getVehicleById(id)
|
||||
|
||||
const [activePhoto, setActivePhoto] = useState(0)
|
||||
|
||||
useEffect(() => {
|
||||
window.scrollTo({ top: 0, behavior: 'instant' })
|
||||
setActivePhoto(0)
|
||||
}, [id])
|
||||
|
||||
if (!vehicle) {
|
||||
return (
|
||||
<div className="not-found">
|
||||
<p>{t('vehicle.notFound')}</p>
|
||||
<Link to="/" className="btn-primary">{t('vehicle.back')}</Link>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
const specs = [
|
||||
{ label: t('vehicle.details.mileage'), value: `${vehicle.mileage.toLocaleString()} km` },
|
||||
{ label: t('vehicle.details.fuel'), value: t(`vehicle.fuelType.${vehicle.fuelType}`) },
|
||||
{ label: t('vehicle.details.transmission'), value: t(`vehicle.transmission.${vehicle.transmission}`) },
|
||||
{ label: t('vehicle.details.color'), value: vehicle.color },
|
||||
{ label: t('vehicle.details.engine'), value: `${vehicle.engineCC.toLocaleString()} cc` },
|
||||
{ label: t('vehicle.details.doors'), value: vehicle.doors },
|
||||
{ label: t('vehicle.details.location'), value: vehicle.location },
|
||||
{ label: t('vehicle.details.seller'), value: vehicle.seller },
|
||||
]
|
||||
|
||||
return (
|
||||
<div className="detail-page">
|
||||
<div className="detail-back-bar">
|
||||
<Link to="/" className="detail-back-btn">{t('vehicle.back')}</Link>
|
||||
</div>
|
||||
|
||||
<div className="detail-content">
|
||||
<div className="gallery">
|
||||
<div className="gallery-main">
|
||||
<img
|
||||
src={vehicle.photos[activePhoto]}
|
||||
alt={`${vehicle.year} ${vehicle.make} ${vehicle.model}`}
|
||||
onError={imgFallback(vehicle.make, vehicle.model)}
|
||||
/>
|
||||
</div>
|
||||
{vehicle.photos.length > 1 && (
|
||||
<div className="gallery-thumbs">
|
||||
{vehicle.photos.map((photo, i) => (
|
||||
<button
|
||||
key={i}
|
||||
className={`thumb-btn${activePhoto === i ? ' active' : ''}`}
|
||||
onClick={() => setActivePhoto(i)}
|
||||
aria-label={`Photo ${i + 1}`}
|
||||
>
|
||||
<img
|
||||
src={photo}
|
||||
alt=""
|
||||
onError={imgFallback(vehicle.make, vehicle.model)}
|
||||
/>
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="detail-head">
|
||||
<div>
|
||||
<div className="detail-badges">
|
||||
<span className={`badge badge-${vehicle.type}`}>
|
||||
{t(`vehicle.type.${vehicle.type}`)}
|
||||
</span>
|
||||
<span className="badge badge-year">{vehicle.year}</span>
|
||||
</div>
|
||||
<h1 className="detail-title">{vehicle.make} {vehicle.model}</h1>
|
||||
</div>
|
||||
<div className="detail-price-block">
|
||||
<div className="detail-price">€{vehicle.price.toLocaleString()}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="spec-table">
|
||||
{specs.map(({ label, value }) => (
|
||||
<>
|
||||
<div className="spec-label" key={`l-${label}`}>{label}</div>
|
||||
<div className="spec-value" key={`v-${label}`}>{value}</div>
|
||||
</>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<p className="detail-description">
|
||||
{vehicle.description[lang] ?? vehicle.description.en}
|
||||
</p>
|
||||
|
||||
<div className="seller-card">
|
||||
<div className="seller-info">
|
||||
<div className="seller-avatar">{vehicle.seller[0]}</div>
|
||||
<div>
|
||||
<div className="seller-name">{vehicle.seller}</div>
|
||||
<div className="seller-phone">{vehicle.phone}</div>
|
||||
</div>
|
||||
</div>
|
||||
<a
|
||||
href={`tel:${vehicle.phone.replace(/\s/g, '')}`}
|
||||
className="btn-primary contact-btn"
|
||||
>
|
||||
{t('vehicle.contact')}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
148
frontend/src/services/i18nService.js
Normal file
148
frontend/src/services/i18nService.js
Normal file
@ -0,0 +1,148 @@
|
||||
const translations = {
|
||||
en: {
|
||||
nav: {
|
||||
home: 'Home',
|
||||
cars: 'Cars',
|
||||
trucks: 'Trucks',
|
||||
contact: 'Contact',
|
||||
},
|
||||
hero: {
|
||||
title: 'Find Your Perfect Vehicle',
|
||||
subtitle: 'Thousands of cars and trucks from trusted sellers across the country',
|
||||
cta: 'Browse Listings',
|
||||
sell: 'Sell Your Car',
|
||||
},
|
||||
stats: {
|
||||
cars: 'Cars',
|
||||
trucks: 'Trucks',
|
||||
sellers: 'Verified Sellers',
|
||||
rating: 'Avg. Rating',
|
||||
},
|
||||
listings: {
|
||||
featured: 'Featured Listings',
|
||||
viewDetails: 'View Details',
|
||||
},
|
||||
vehicle: {
|
||||
type: { car: 'Car', truck: 'Truck' },
|
||||
fuelType: {
|
||||
petrol: 'Petrol',
|
||||
diesel: 'Diesel',
|
||||
electric: 'Electric',
|
||||
hybrid: 'Hybrid',
|
||||
},
|
||||
transmission: {
|
||||
automatic: 'Automatic',
|
||||
manual: 'Manual',
|
||||
},
|
||||
details: {
|
||||
mileage: 'Mileage',
|
||||
fuel: 'Fuel Type',
|
||||
transmission: 'Transmission',
|
||||
color: 'Color',
|
||||
engine: 'Engine',
|
||||
doors: 'Doors',
|
||||
location: 'Location',
|
||||
seller: 'Seller',
|
||||
},
|
||||
contact: 'Contact Seller',
|
||||
back: '← Back to Listings',
|
||||
notFound: 'Vehicle not found.',
|
||||
},
|
||||
whyUs: {
|
||||
title: 'Why Choose Auto Spot?',
|
||||
verified: {
|
||||
title: 'Verified Sellers',
|
||||
desc: 'Every seller is verified by our team for your peace of mind.',
|
||||
},
|
||||
price: {
|
||||
title: 'Best Prices',
|
||||
desc: 'Compare thousands of listings and find the best deal.',
|
||||
},
|
||||
contact: {
|
||||
title: 'Easy Contact',
|
||||
desc: 'Connect with sellers directly — no middlemen.',
|
||||
},
|
||||
},
|
||||
footer: '© 2026 Auto Spot. All rights reserved.',
|
||||
},
|
||||
|
||||
ru: {
|
||||
nav: {
|
||||
home: 'Главная',
|
||||
cars: 'Легковые',
|
||||
trucks: 'Грузовые',
|
||||
contact: 'Контакты',
|
||||
},
|
||||
hero: {
|
||||
title: 'Найдите идеальный автомобиль',
|
||||
subtitle: 'Тысячи автомобилей и грузовиков от проверенных продавцов по всей стране',
|
||||
cta: 'Смотреть объявления',
|
||||
sell: 'Продать авто',
|
||||
},
|
||||
stats: {
|
||||
cars: 'Легковых',
|
||||
trucks: 'Грузовых',
|
||||
sellers: 'Продавцов',
|
||||
rating: 'Рейтинг',
|
||||
},
|
||||
listings: {
|
||||
featured: 'Рекомендуемые объявления',
|
||||
viewDetails: 'Подробнее',
|
||||
},
|
||||
vehicle: {
|
||||
type: { car: 'Легковой', truck: 'Грузовой' },
|
||||
fuelType: {
|
||||
petrol: 'Бензин',
|
||||
diesel: 'Дизель',
|
||||
electric: 'Электрический',
|
||||
hybrid: 'Гибрид',
|
||||
},
|
||||
transmission: {
|
||||
automatic: 'Автоматическая',
|
||||
manual: 'Механическая',
|
||||
},
|
||||
details: {
|
||||
mileage: 'Пробег',
|
||||
fuel: 'Тип топлива',
|
||||
transmission: 'Коробка передач',
|
||||
color: 'Цвет',
|
||||
engine: 'Двигатель',
|
||||
doors: 'Дверей',
|
||||
location: 'Город',
|
||||
seller: 'Продавец',
|
||||
},
|
||||
contact: 'Связаться с продавцом',
|
||||
back: '← Назад к объявлениям',
|
||||
notFound: 'Автомобиль не найден.',
|
||||
},
|
||||
whyUs: {
|
||||
title: 'Почему Auto Spot?',
|
||||
verified: {
|
||||
title: 'Проверенные продавцы',
|
||||
desc: 'Каждый продавец проверен нашей командой.',
|
||||
},
|
||||
price: {
|
||||
title: 'Лучшие цены',
|
||||
desc: 'Сравните тысячи объявлений и найдите лучшую сделку.',
|
||||
},
|
||||
contact: {
|
||||
title: 'Прямой контакт',
|
||||
desc: 'Связывайтесь с продавцами напрямую без посредников.',
|
||||
},
|
||||
},
|
||||
footer: '© 2026 Auto Spot. Все права защищены.',
|
||||
},
|
||||
}
|
||||
|
||||
export const LANGS = ['en', 'ru']
|
||||
export const DEFAULT_LANG = 'en'
|
||||
|
||||
export function t(key, lang = DEFAULT_LANG) {
|
||||
const keys = key.split('.')
|
||||
let node = translations[lang] ?? translations[DEFAULT_LANG]
|
||||
for (const k of keys) {
|
||||
if (node == null) return key
|
||||
node = node[k]
|
||||
}
|
||||
return typeof node === 'string' ? node : key
|
||||
}
|
||||
26
frontend/src/services/vehicleService.js
Normal file
26
frontend/src/services/vehicleService.js
Normal file
@ -0,0 +1,26 @@
|
||||
import { vehicles } from '../data/vehicles.js'
|
||||
|
||||
export function getAllVehicles() {
|
||||
return vehicles
|
||||
}
|
||||
|
||||
export function getVehicleById(id) {
|
||||
return vehicles.find(v => v.id === Number(id)) ?? null
|
||||
}
|
||||
|
||||
export function getVehiclesByType(type) {
|
||||
return vehicles.filter(v => v.type === type)
|
||||
}
|
||||
|
||||
export function getFeaturedVehicles(limit = 6) {
|
||||
return vehicles.slice(0, limit)
|
||||
}
|
||||
|
||||
export function getStats() {
|
||||
return {
|
||||
cars: vehicles.filter(v => v.type === 'car').length,
|
||||
trucks: vehicles.filter(v => v.type === 'truck').length,
|
||||
sellers: 540,
|
||||
rating: '4.8',
|
||||
}
|
||||
}
|
||||
7
frontend/vite.config.js
Normal file
7
frontend/vite.config.js
Normal file
@ -0,0 +1,7 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
})
|
||||
Loading…
Reference in New Issue
Block a user