Compare commits

...

12 Commits

Author SHA1 Message Date
Matiss Jurevics
8af304ffb3 Merge pull request #3 from MatissJurevics/cursor/hero-title-mobile-size-6292
Hero title mobile size
2025-12-17 18:49:16 +00:00
Matiss Jurevics
cb6cea765a Merge pull request #2 from MatissJurevics/cursor/hero-section-polygon-reduction-d730
Hero section polygon reduction
2025-12-17 18:49:06 +00:00
Cursor Agent
ba7bbbd40e Add responsive styles for hero title on mobile
Co-authored-by: matissjurevics <matissjurevics@gmail.com>
2025-12-17 18:41:35 +00:00
Cursor Agent
b4621e1f79 Optimize terrain geometry for mobile
Co-authored-by: matissjurevics <matissjurevics@gmail.com>
2025-12-17 18:40:22 +00:00
Matiss Jurevics
d7dec1741e Merge pull request #1 from MatissJurevics/cursor/dark-mode-and-mobile-optimization-4a15
Dark mode and mobile optimization
2025-12-17 18:27:00 +00:00
Cursor Agent
ea2fc6a090 feat: Implement dark mode and mobile optimizations
This commit introduces dark mode support by defining CSS variables and applies optimizations for mobile devices by reducing polygon counts in 3D models.

Co-authored-by: matissjurevics <matissjurevics@gmail.com>
2025-12-17 18:26:16 +00:00
9e22da569c feat: switch Docker build process from Node.js/npm to Bun 2025-12-16 23:34:41 +00:00
e106ee9df1 feat: Add Dockerfile for multi-stage Node.js build with Nginx and .dockerignore. 2025-12-16 00:06:26 +00:00
8af2ce6941 style: Refactor global CSS by deleting styles/index.css, updating import paths, and modifying index.css styles. 2025-12-15 23:59:05 +00:00
495f462d03 feat: Add Buttondown email subscription form to footer with new input styling. 2025-12-15 22:21:56 +00:00
5c5af76e46 feat: Fetch projects from GitHub API, add a manual product with image, and enhance product display and modal details. 2025-12-15 22:09:57 +00:00
47dd66e5e7 feat: implement custom interactive tooltips for ActivityHeatmap bars to display detailed activity data on hover. 2025-12-15 21:28:49 +00:00
14 changed files with 310 additions and 129 deletions

8
.dockerignore Normal file
View File

@@ -0,0 +1,8 @@
node_modules
dist
.git
.gitignore
*.log
docker-compose.yml
Dockerfile
.dockerignore

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
# Stage 1: Build
FROM oven/bun:1 AS builder
WORKDIR /app
COPY package.json package-lock.json ./
RUN bun install
COPY . .
RUN bun run build
# Stage 2: Serve
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

Binary file not shown.

After

Width:  |  Height:  |  Size: 368 KiB

View File

@@ -4,7 +4,8 @@ import HeroModel from './canvas/HeroModel';
import ProductGrid from './components/ProductGrid'; import ProductGrid from './components/ProductGrid';
import InfoTabs from './components/InfoTabs'; import InfoTabs from './components/InfoTabs';
import Footer from './components/Footer'; import Footer from './components/Footer';
import './styles/index.css'; import './index.css';
import './styles/variables.css';
import gsap from 'gsap'; import gsap from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger'; import { ScrollTrigger } from 'gsap/ScrollTrigger';
import Lenis from '@studio-freight/lenis' import Lenis from '@studio-freight/lenis'
@@ -83,7 +84,7 @@ function App() {
zIndex: 10, zIndex: 10,
pointerEvents: 'none', pointerEvents: 'none',
textAlign: 'center', textAlign: 'center',
color: '#000' // Solid black text to sit on top of wireframe color: 'var(--text-main, #000)' // Adapts to dark mode
}}> }}>
<div style={{ overflow: 'hidden' }}> <div style={{ overflow: 'hidden' }}>
<h1 className="hero-title" style={{ <h1 className="hero-title" style={{

View File

@@ -19,6 +19,12 @@ const GlobeMesh = () => {
const groupRef = useRef(); const groupRef = useRef();
const [bordersTexture, setBordersTexture] = useState(null); const [bordersTexture, setBordersTexture] = useState(null);
// Detect mobile device and reduce polygon count accordingly
const isMobile = useMemo(() => {
return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ||
(window.innerWidth <= 768);
}, []);
// Generate Borders Texture using D3 // Generate Borders Texture using D3
useEffect(() => { useEffect(() => {
const generateTexture = async () => { const generateTexture = async () => {
@@ -69,17 +75,23 @@ const GlobeMesh = () => {
} }
}); });
// Reduce segment counts for mobile devices
const baseSphereSegments = isMobile ? 24 : 64; // Reduce from 64x64 to 24x24 on mobile
const wireframeSegments = isMobile ? 16 : 32; // Reduce from 32x32 to 16x16 on mobile
const markerSegments = isMobile ? 8 : 16; // Reduce from 16x16 to 8x8 on mobile
const ringSegments = isMobile ? 16 : 32; // Reduce from 32 to 16 on mobile
return ( return (
<group ref={groupRef}> <group ref={groupRef}>
{/* 1. Base Dark Sphere (blocks background stars/wireframe from showing through backface) */} {/* 1. Base Dark Sphere (blocks background stars/wireframe from showing through backface) */}
<mesh> <mesh>
<sphereGeometry args={[1.95, 64, 64]} /> <sphereGeometry args={[1.95, baseSphereSegments, baseSphereSegments]} />
<meshBasicMaterial color="#000000" /> <meshBasicMaterial color="#000000" />
</mesh> </mesh>
{/* 2. Light Wireframe Sphere - Outer Cage */} {/* 2. Light Wireframe Sphere - Outer Cage */}
<mesh> <mesh>
<sphereGeometry args={[2.0, 32, 32]} /> <sphereGeometry args={[2.0, wireframeSegments, wireframeSegments]} />
<meshBasicMaterial <meshBasicMaterial
color="#444" color="#444"
wireframe={true} wireframe={true}
@@ -91,7 +103,7 @@ const GlobeMesh = () => {
{/* 3. Borders Sphere (Texture) */} {/* 3. Borders Sphere (Texture) */}
{bordersTexture && ( {bordersTexture && (
<mesh> <mesh>
<sphereGeometry args={[2.01, 64, 64]} /> <sphereGeometry args={[2.01, baseSphereSegments, baseSphereSegments]} />
<meshBasicMaterial <meshBasicMaterial
map={bordersTexture} map={bordersTexture}
transparent={true} transparent={true}
@@ -105,11 +117,11 @@ const GlobeMesh = () => {
{/* Ireland Marker */} {/* Ireland Marker */}
<mesh position={irelandPos}> <mesh position={irelandPos}>
<sphereGeometry args={[0.04, 16, 16]} /> <sphereGeometry args={[0.04, markerSegments, markerSegments]} />
<meshBasicMaterial color="#ff4d00" /> <meshBasicMaterial color="#ff4d00" />
</mesh> </mesh>
<mesh position={irelandPos}> <mesh position={irelandPos}>
<ringGeometry args={[0.06, 0.09, 32]} /> <ringGeometry args={[0.06, 0.09, ringSegments]} />
<meshBasicMaterial color="#ff4d00" side={THREE.DoubleSide} transparent opacity={0.6} /> <meshBasicMaterial color="#ff4d00" side={THREE.DoubleSide} transparent opacity={0.6} />
</mesh> </mesh>
</group> </group>

View File

@@ -8,8 +8,15 @@ const Terrain = () => {
const materialRef = useRef(); const materialRef = useRef();
const noise3D = useMemo(() => createNoise3D(), []); const noise3D = useMemo(() => createNoise3D(), []);
// Create geometry with HIGHER segment count for smoother, denser wave like the reference // Detect mobile device and reduce polygon count accordingly
const geometry = useMemo(() => new THREE.PlaneGeometry(20, 20, 100, 100), []); const isMobile = useMemo(() => {
return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ||
(window.innerWidth <= 768);
}, []);
// Create geometry with reduced segment count for mobile devices
const segments = isMobile ? 28 : 100; // Reduce from 100x100 to 28x28 on mobile (50% polygon reduction)
const geometry = useMemo(() => new THREE.PlaneGeometry(20, 20, segments, segments), [segments]);
useFrame((state) => { useFrame((state) => {
if (mesh.current) { if (mesh.current) {
@@ -52,6 +59,12 @@ const Terrain = () => {
}; };
const HeroModel = () => { const HeroModel = () => {
// Detect dark mode for fog color
const fogColor = useMemo(() => {
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
return prefersDark ? '#0a0a0a' : '#e4e4e4';
}, []);
return ( return (
<div style={{ width: '100%', height: '100vh', position: 'absolute', top: 0, left: 0, zIndex: 0 }}> <div style={{ width: '100%', height: '100vh', position: 'absolute', top: 0, left: 0, zIndex: 0 }}>
<Canvas <Canvas
@@ -66,7 +79,7 @@ const HeroModel = () => {
<Terrain /> <Terrain />
{/* Fog to fade edges into background color */} {/* Fog to fade edges into background color */}
<fog attach="fog" args={['#e4e4e4', 5, 20]} /> <fog attach="fog" args={[fogColor, 5, 20]} />
</Suspense> </Suspense>
</Canvas> </Canvas>
</div> </div>

View File

@@ -6,6 +6,7 @@ const ActivityHeatmap = () => {
const [loading, setLoading] = useState(true); const [loading, setLoading] = useState(true);
const [data, setData] = useState([]); const [data, setData] = useState([]);
const [error, setError] = useState(null); const [error, setError] = useState(null);
const [hoveredData, setHoveredData] = useState(null);
useEffect(() => { useEffect(() => {
const fetchData = async () => { const fetchData = async () => {
@@ -181,18 +182,18 @@ const ActivityHeatmap = () => {
// Draw Gitea Bar (Bottom) // Draw Gitea Bar (Bottom)
if (d.gitea > 0) { if (d.gitea > 0) {
drawBar(g, pos.x, pos.y, tileWidth, tileHeight, giteaH, colorGitea, `Gitea: ${d.gitea} on ${d.date.toDateString()}`); drawBar(g, pos.x, pos.y, tileWidth, tileHeight, giteaH, colorGitea, `Gitea: ${d.gitea} on ${d.date.toDateString()}`, d);
} }
// Draw GitHub Bar (Top) // Draw GitHub Bar (Top)
// Adjust y position up by gitea height // Adjust y position up by gitea height
if (d.github > 0) { if (d.github > 0) {
drawBar(g, pos.x, pos.y - giteaH, tileWidth, tileHeight, githubH, colorGithub, `GitHub: ${d.github} on ${d.date.toDateString()}`); drawBar(g, pos.x, pos.y - giteaH, tileWidth, tileHeight, githubH, colorGithub, `GitHub: ${d.github} on ${d.date.toDateString()}`, d);
} }
}); });
// Function to draw isometric prism // Function to draw isometric prism
function drawBar(container, x, y, w, h, z, color, tooltipText) { function drawBar(container, x, y, w, h, z, color, tooltipText, dataItem) {
// Top Face // Top Face
const pathTop = `M${x} ${y - z} const pathTop = `M${x} ${y - z}
L${x + w} ${y + h - z} L${x + w} ${y + h - z}
@@ -226,11 +227,24 @@ const ActivityHeatmap = () => {
group.append("title").text(tooltipText); group.append("title").text(tooltipText);
// Hover effect // Hover effect
// group.on("mouseenter", function() { group.on("mouseenter", function (event) {
// d3.select(this).selectAll("path").attr("opacity", 0.8); d3.select(this).selectAll("path").attr("opacity", 0.8);
// }).on("mouseleave", function() { // Calculate position relative to container
// d3.select(this).selectAll("path").attr("opacity", 1); const [mx, my] = d3.pointer(event, svg.node());
// }); setHoveredData({
x: mx,
y: my,
date: d3.select(this).datum().date,
github: d3.select(this).datum().github,
gitea: d3.select(this).datum().gitea
});
}).on("mouseleave", function () {
d3.select(this).selectAll("path").attr("opacity", 1);
setHoveredData(null);
});
// Attach data to group for access in handler
group.datum(dataItem);
} }
}, [data, loading]); }, [data, loading]);
@@ -262,7 +276,8 @@ const ActivityHeatmap = () => {
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',
padding: '0', padding: '0',
overflow: 'hidden' overflow: 'visible', // Allow tooltip to render outside if needed
position: 'relative' // Anchor for absolute tooltip
}}> }}>
<h2 className="uppercase" style={{ fontSize: '1.5rem', marginBottom: '10px', color: '#888' }}> <h2 className="uppercase" style={{ fontSize: '1.5rem', marginBottom: '10px', color: '#888' }}>
Contribution Topography Contribution Topography
@@ -282,6 +297,31 @@ const ActivityHeatmap = () => {
preserveAspectRatio="xMidYMid meet" preserveAspectRatio="xMidYMid meet"
style={{ width: '100%', height: 'auto', overflow: 'visible' }} style={{ width: '100%', height: 'auto', overflow: 'visible' }}
/> />
{hoveredData && (
<div style={{
position: 'absolute',
left: hoveredData.x + 10, // Closer offset
top: hoveredData.y - 30,
background: 'rgba(0,0,0,0.9)',
border: '1px solid #444',
borderRadius: '4px',
padding: '10px',
pointerEvents: 'none',
zIndex: 10,
fontSize: '0.8rem',
fontFamily: 'monospace',
boxShadow: '0 4px 10px rgba(0,0,0,0.5)'
}}>
<div style={{ fontWeight: 'bold', marginBottom: '5px', color: '#fff' }}>
{hoveredData.date ? hoveredData.date.toDateString() : 'Date'}
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: '2px' }}>
<div style={{ color: '#2da44e' }}>GitHub: {hoveredData.github || 0}</div>
<div style={{ color: '#ff4d00' }}>Gitea: {hoveredData.gitea || 0}</div>
</div>
</div>
)}
</section> </section>
); );
}; };

View File

@@ -36,20 +36,20 @@ const Footer = () => {
<p style={{ marginBottom: '20px', color: '#888' }}> <p style={{ marginBottom: '20px', color: '#888' }}>
Occasional updates on new projects and experiments. Occasional updates on new projects and experiments.
</p> </p>
<div style={{ display: 'flex', borderBottom: '1px solid #333' }}> <form
action="https://buttondown.com/api/emails/embed-subscribe/matiss"
method="post"
target="_blank"
style={{ display: 'flex', borderBottom: '1px solid #333' }}
>
<input <input
className="footer-input"
type="email" type="email"
name="email"
placeholder="email address" placeholder="email address"
style={{
background: 'transparent',
border: 'none',
color: '#fff',
padding: '10px 0',
flex: 1,
outline: 'none'
}}
/> />
<button style={{ <input type="hidden" value="1" name="embed" />
<button type="submit" style={{
background: 'transparent', background: 'transparent',
border: 'none', border: 'none',
color: '#ff4d00', color: '#ff4d00',
@@ -59,7 +59,7 @@ const Footer = () => {
}}> }}>
Subscribe Subscribe
</button> </button>
</div> </form>
</div> </div>
</div> </div>

View File

@@ -6,11 +6,12 @@ import '../styles/variables.css';
gsap.registerPlugin(ScrollTrigger); gsap.registerPlugin(ScrollTrigger);
const products = [
{ id: 1, name: 'Portfolio V1', desc: 'Web Design', price: '2023' },
{ id: 2, name: 'Neon Dreams', desc: 'WebGL Experience', price: '2024' }, const REPO_LIST = [
{ id: 3, name: 'Type Lab', desc: 'Typography Tool', price: '2024' }, 'MatissJurevics/Gene-AI',
{ id: 4, name: 'Audio Vis', desc: 'Sound Reactive', price: '2023' }, 'MatissJurevics/movesync',
'MatissJurevics/script-server',
]; ];
const ProductGrid = () => { const ProductGrid = () => {
@@ -18,8 +19,63 @@ const ProductGrid = () => {
const titleRef = useRef(null); const titleRef = useRef(null);
const itemRefs = useRef([]); const itemRefs = useRef([]);
const [selectedProject, setSelectedProject] = useState(null); const [selectedProject, setSelectedProject] = useState(null);
const [products, setProducts] = useState([]);
useEffect(() => { useEffect(() => {
const fetchRepos = async () => {
const promises = REPO_LIST.map(async (repoName, index) => {
try {
const res = await fetch(`https://api.github.com/repos/${repoName}`);
if (!res.ok) throw new Error('Fetch failed');
const data = await res.json();
return {
id: index + 1,
name: data.name,
desc: data.description || data.language || 'No description',
price: `${data.stargazers_count}`,
language: data.language,
url: data.html_url,
raw: data
};
} catch (e) {
console.warn(`Failed to load ${repoName}`, e);
// Fallback or skip
return {
id: index + 1,
name: repoName.split('/')[1],
desc: 'Loading Error',
price: 'NT',
url: '#'
};
}
});
const results = await Promise.all(promises);
// Add Manual Gumroad Project
const manualProject = {
id: 'wireframe', // unique string ID to avoid collision
name: 'Wireframe UI Kit',
desc: 'Web Design Resource',
price: '$29',
url: 'https://saetom.gumroad.com/l/WireframeUIKit',
image: '/images/wireframe_kit.png',
details: `
A comprehensive Wireframe UI Kit designed to speed up your prototyping workflow.
Includes over 100+ customizable components, varying layouts, and responsive patterns.
Perfect for designers and developers looking to create high-fidelity wireframes quickly.
`
};
setProducts([manualProject, ...results]);
};
fetchRepos();
}, []);
useEffect(() => {
if (!products.length) return; // Wait for data
const ctx = gsap.context(() => { const ctx = gsap.context(() => {
// Animate Title // Animate Title
gsap.from(titleRef.current, { gsap.from(titleRef.current, {
@@ -52,46 +108,52 @@ const ProductGrid = () => {
}, gridRef); }, gridRef);
return () => ctx.revert(); return () => ctx.revert();
}, []); }, [products]);
const onEnter = ({ currentTarget }) => { const onEnter = ({ currentTarget }) => {
gsap.to(currentTarget, { backgroundColor: '#fff', scale: 0.98, duration: 0.3 }); const computedStyle = getComputedStyle(document.documentElement);
const hoverBg = computedStyle.getPropertyValue('--product-bg-hover').trim() || '#fff';
const gridLine = computedStyle.getPropertyValue('--grid-line').trim() || '#ccc';
gsap.to(currentTarget, { backgroundColor: hoverBg, scale: 0.98, duration: 0.3 });
gsap.to(currentTarget.querySelector('.product-img'), { scale: 1.1, duration: 0.3 }); gsap.to(currentTarget.querySelector('.product-img'), { scale: 1.1, duration: 0.3 });
gsap.to(currentTarget.querySelector('.indicator'), { backgroundColor: '#ff4d00', scale: 1.5, duration: 0.3 }); gsap.to(currentTarget.querySelector('.indicator'), { backgroundColor: '#ff4d00', scale: 1.5, duration: 0.3 });
}; };
const onLeave = ({ currentTarget }) => { const onLeave = ({ currentTarget }) => {
gsap.to(currentTarget, { backgroundColor: '#f5f5f5', scale: 1, duration: 0.3 }); const computedStyle = getComputedStyle(document.documentElement);
const productBg = computedStyle.getPropertyValue('--product-bg').trim() || '#f5f5f5';
const gridLine = computedStyle.getPropertyValue('--grid-line').trim() || '#ccc';
gsap.to(currentTarget, { backgroundColor: productBg, scale: 1, duration: 0.3 });
gsap.to(currentTarget.querySelector('.product-img'), { scale: 1, duration: 0.3 }); gsap.to(currentTarget.querySelector('.product-img'), { scale: 1, duration: 0.3 });
gsap.to(currentTarget.querySelector('.indicator'), { backgroundColor: '#ccc', scale: 1, duration: 0.3 }); gsap.to(currentTarget.querySelector('.indicator'), { backgroundColor: gridLine, scale: 1, duration: 0.3 });
}; };
return ( return (
<> <>
<section id="work" ref={gridRef} style={{ <section id="work" ref={gridRef} style={{
padding: '100px 20px', padding: '100px 20px',
background: '#fff', background: 'var(--bg-color, #fff)',
minHeight: '100vh' minHeight: '100vh'
}}> }}>
<div style={{ maxWidth: '1400px', margin: '0 auto' }}> <div style={{ maxWidth: '1400px', margin: '0 auto' }}>
<div style={{ <div style={{
marginBottom: '60px', marginBottom: '60px',
borderBottom: '1px solid #000', borderBottom: '1px solid var(--text-main, #000)',
paddingBottom: '20px', paddingBottom: '20px',
display: 'flex', display: 'flex',
justifyContent: 'space-between', justifyContent: 'space-between',
alignItems: 'baseline' alignItems: 'baseline'
}} ref={titleRef}> }} ref={titleRef}>
<h2 className="uppercase" style={{ fontSize: '2rem', margin: 0 }}>Selected Work</h2> <h2 className="uppercase" style={{ fontSize: '2rem', margin: 0, color: 'var(--text-main, #000)' }}>Selected Work</h2>
<span className="mono" style={{ fontSize: '0.9rem', color: '#666' }}>DESIGN / CODE</span> <span className="mono" style={{ fontSize: '0.9rem', color: 'var(--text-dim, #666)' }}>DESIGN / CODE</span>
</div> </div>
<div style={{ <div style={{
display: 'grid', display: 'grid',
gridTemplateColumns: 'repeat(auto-fill, minmax(350px, 1fr))', gridTemplateColumns: 'repeat(auto-fill, minmax(350px, 1fr))',
gap: '2px', // Tight gap for grid lines effect gap: '2px', // Tight gap for grid lines effect
background: '#ccc', // Color of grid lines background: 'var(--grid-line, #ccc)', // Color of grid lines
border: '1px solid #ccc' border: '1px solid var(--grid-line, #ccc)'
}}> }}>
{products.map((p, i) => ( {products.map((p, i) => (
<div <div
@@ -99,7 +161,7 @@ const ProductGrid = () => {
ref={el => itemRefs.current[i] = el} ref={el => itemRefs.current[i] = el}
className="product-item" className="product-item"
style={{ style={{
background: '#f5f5f5', background: 'var(--product-bg, #f5f5f5)',
height: '450px', height: '450px',
padding: '30px', padding: '30px',
display: 'flex', display: 'flex',
@@ -114,33 +176,43 @@ const ProductGrid = () => {
onClick={() => setSelectedProject(p)} onClick={() => setSelectedProject(p)}
> >
<div style={{ display: 'flex', justifyContent: 'space-between', width: '100%', zIndex: 2 }}> <div style={{ display: 'flex', justifyContent: 'space-between', width: '100%', zIndex: 2 }}>
<span className="mono" style={{ fontSize: '0.8rem', color: '#ff4d00' }}>0{p.id}</span> <span className="mono" style={{ fontSize: '0.8rem', color: '#ff4d00' }}>
{typeof p.id === 'number' ? `0${p.id}` : 'NEW'}
</span>
<div className="indicator" style={{ <div className="indicator" style={{
width: '8px', width: '8px',
height: '8px', height: '8px',
background: '#ccc', background: 'var(--grid-line, #ccc)',
borderRadius: '50%' borderRadius: '50%'
}}></div> }}></div>
</div> </div>
{/* Placeholder for Product Image */} {/* Product Image or Placeholder */}
<div className="product-img" style={{ <div className="product-img" style={{
flex: 1, flex: 1,
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',
fontSize: '5rem', fontSize: '3rem',
color: '#e0e0e0', color: 'var(--text-dim, #e0e0e0)',
fontWeight: 800, fontWeight: 800,
userSelect: 'none' userSelect: 'none',
textAlign: 'center',
wordBreak: 'break-word',
lineHeight: 1.2,
overflow: 'hidden'
}}> }}>
MJ {p.image ? (
<img src={p.image} alt={p.name} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
) : (
p.name.substring(0, 10)
)}
</div> </div>
<div style={{ zIndex: 2 }}> <div style={{ zIndex: 2 }}>
<h3 style={{ fontSize: '1.5rem', marginBottom: '5px' }}>{p.name}</h3> <h3 style={{ fontSize: '1.5rem', marginBottom: '5px', overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap', color: 'var(--text-main, #000)' }}>{p.name}</h3>
<div style={{ display: 'flex', justifyContent: 'space-between', fontSize: '0.9rem', color: '#666' }}> <div style={{ display: 'flex', justifyContent: 'space-between', fontSize: '0.9rem', color: 'var(--text-dim, #666)' }}>
<span>{p.desc}</span> <span style={{ maxWidth: '70%', overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' }}>{p.desc}</span>
<span>{p.price}</span> <span>{p.price}</span>
</div> </div>
</div> </div>

View File

@@ -102,9 +102,16 @@ const ProjectModal = ({ project, onClose }) => {
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',
borderRight: '1px solid #ccc' borderRight: '1px solid #ccc',
overflow: 'hidden'
}}> }}>
<h1 style={{ fontSize: '8vw', color: '#f0f0f0', fontWeight: '900' }}>MJ</h1> {project.image ? (
<img src={project.image} alt={project.name} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
) : (
<h1 style={{ fontSize: '8vw', color: '#f0f0f0', fontWeight: '900' }}>
{project.name ? project.name.substring(0, 2).toUpperCase() : 'MJ'}
</h1>
)}
</div> </div>
{/* Right: Info */} {/* Right: Info */}
@@ -118,23 +125,18 @@ const ProjectModal = ({ project, onClose }) => {
}}> }}>
<div> <div>
<span className="mono" style={{ color: '#ff4d00', marginBottom: '10px', display: 'block' }}> <span className="mono" style={{ color: '#ff4d00', marginBottom: '10px', display: 'block' }}>
{project.price} {/* Using 'price' for Year based on previous data struct */} {project.price}
</span> </span>
<h2 className="uppercase" style={{ fontSize: '3rem', lineHeight: 1, marginBottom: '20px' }}> <h2 className="uppercase" style={{ fontSize: '3rem', lineHeight: 1, marginBottom: '20px' }}>
{project.name} {project.name}
</h2> </h2>
<p style={{ fontSize: '1.1rem', color: '#444', marginBottom: '40px', lineHeight: 1.6 }}> <p style={{ fontSize: '1.1rem', color: '#444', marginBottom: '40px', lineHeight: 1.6 }}>
This is a detailed description of the {project.name} project. {project.details || project.desc || "No details available."}
It explores the intersection of design and technology,
focusing on user experience and visual impact.
</p> </p>
<div className="mono" style={{ fontSize: '0.9rem', color: '#666' }}> <div className="mono" style={{ fontSize: '0.9rem', color: '#666' }}>
<h4 style={{ color: '#000', marginBottom: '10px' }}>Role</h4> <h4 style={{ color: '#000', marginBottom: '10px' }}>Type</h4>
<p>Design, Development</p> <p>{project.language || 'Design / Resource'}</p>
<br />
<h4 style={{ color: '#000', marginBottom: '10px' }}>Tech Stack</h4>
<p>React, Three.js, GSAP</p>
</div> </div>
</div> </div>
@@ -152,6 +154,7 @@ const ProjectModal = ({ project, onClose }) => {
}} }}
onMouseEnter={(e) => e.target.style.background = '#ff4d00'} onMouseEnter={(e) => e.target.style.background = '#ff4d00'}
onMouseLeave={(e) => e.target.style.background = '#000'} onMouseLeave={(e) => e.target.style.background = '#000'}
onClick={() => window.open(project.url, '_blank')}
> >
View Live View Live
</button> </button>

View File

@@ -25,8 +25,6 @@ a:hover {
body { body {
margin: 0; margin: 0;
display: flex;
place-items: center;
min-width: 320px; min-width: 320px;
min-height: 100vh; min-height: 100vh;
} }
@@ -36,6 +34,48 @@ h1 {
line-height: 1.1; line-height: 1.1;
} }
/* Footer Input */
.footer-input {
background: transparent;
border: none;
color: #fff;
padding: 5px 0;
font-size: 0.9rem;
flex: 1;
outline: none;
transition: all 0.3s ease;
}
.footer-input:focus {
border-bottom: 1px solid #ff4d00;
}
.footer-input::placeholder {
color: #666;
transition: color 0.3s ease;
}
.footer-input:focus::placeholder {
color: #888;
}
/* Footer Links */
footer ul {
list-style: none;
padding: 0;
margin: 0;
}
footer a {
color: #888;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #ff4d00;
}
button { button {
border-radius: 8px; border-radius: 8px;
border: 1px solid transparent; border: 1px solid transparent;
@@ -70,4 +110,17 @@ button:focus-visible {
button { button {
background-color: #f9f9f9; background-color: #f9f9f9;
} }
}
/* Hero Title Mobile Responsive */
@media (max-width: 768px) {
.hero-title {
font-size: 3rem !important;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 2rem !important;
}
} }

View File

@@ -1,7 +1,7 @@
import React from 'react' import React from 'react'
import ReactDOM from 'react-dom/client' import ReactDOM from 'react-dom/client'
import App from './App.jsx' import App from './App.jsx'
import './styles/index.css' import './index.css'
ReactDOM.createRoot(document.getElementById('root')).render( ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode> <React.StrictMode>

View File

@@ -1,54 +0,0 @@
@import './variables.css';
* {
box-sizing: border-box;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: var(--font-main);
font-size: 14px;
line-height: 1.5;
overflow-x: hidden;
/* Hide scrollbar potentially */
}
a {
color: inherit;
text-decoration: none;
}
ul {
list-style: none;
}
/* Utilities */
.uppercase {
text-transform: uppercase;
letter-spacing: 0.05em;
}
.mono {
font-family: monospace;
}
canvas {
touch-action: none;
}
/* Utility to hide scrollbar */
.hide-scrollbar {
-ms-overflow-style: none !important;
/* IE and Edge */
scrollbar-width: none !important;
/* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
display: none !important;
}

View File

@@ -1,10 +1,12 @@
:root { :root {
/* Teenage Engineering Palette */ /* Teenage Engineering Palette - Dark mode default */
--bg-color: #e4e4e4; --bg-color: #0a0a0a;
--text-main: #000000; --text-main: #e4e4e4;
--text-dim: #666666; --text-dim: #888888;
--accent-orange: #ff4d00; --accent-orange: #ff4d00;
--grid-line: #cccccc; --grid-line: #333333;
--product-bg: #1a1a1a;
--product-bg-hover: #2a2a2a;
/* Typos */ /* Typos */
--font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
@@ -13,3 +15,15 @@
/* Layout */ /* Layout */
--header-height: 60px; --header-height: 60px;
} }
@media (prefers-color-scheme: light) {
:root {
/* Light mode overrides */
--bg-color: #e4e4e4;
--text-main: #000000;
--text-dim: #666666;
--grid-line: #cccccc;
--product-bg: #f5f5f5;
--product-bg-hover: #ffffff;
}
}