DEV Community

Cover image for THE CAR HILAX
yatharth Sharma
yatharth Sharma

Posted on

THE CAR HILAX

import React from 'react';

const CarWebsite = () => {
return (


🏎️ Velocity Toys


src="https://i.imgur.com/your-image-id.jpg" // πŸ‘ˆ Replace with actual URL
alt="Red futuristic toy car"
style={styles.image}
/>


The Future of Miniature Racing



Experience precision engineering at a 1:24 scale. This red aerodynamic masterpiece
combines futuristic aesthetics with high-durability performance.



Aerodynamic
Premium Build

Pre-Order Now



);
};

const styles = {
page: { minHeight: '100vh', backgroundColor: '#1a1a1a', color: '#fff', fontFamily: 'Inter, sans-serif' },
nav: { padding: '20px 50px', fontSize: '24px', fontWeight: 'bold', borderBottom: '1px solid #333' },
container: { display: 'flex', flexWrap: 'wrap', padding: '60px 10%', gap: '40px', alignItems: 'center' },
imageWrapper: { flex: '1 1 400px', textAlign: 'center' },
image: { width: '100%', maxWidth: '600px', borderRadius: '20px', boxShadow: '0 20px 40px rgba(0,0,0,0.5)' },
content: { flex: '1 1 400px' },
heading: { fontSize: '48px', color: '#ff4d4d', marginBottom: '20px' },
description: { fontSize: '18px', lineHeight: '1.6', color: '#ccc', marginBottom: '30px' },
badgeGroup: { display: 'flex', gap: '10px', marginBottom: '30px' },
badge: { padding: '8px 16px', background: '#333', borderRadius: '20px', fontSize: '14px' },
ctaButton: { padding: '15px 40px', background: '#ff4d4d', border: 'none', color: 'white', borderRadius: '5px', fontWeight: 'bold', cursor: 'pointer' }
};

export default CarWebsite;

Top comments (0)