From 74248de457cb4823b70e47669e44b031ad9c96b1 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 15 Oct 2025 15:03:43 +0200 Subject: [PATCH 1/2] chore: add node_modules to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules From b2ed91936c0d19bfc9abedc8a1fe6ed48a9a74f1 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 15 Oct 2025 15:20:38 +0200 Subject: [PATCH 2/2] docs: update project documentation and add download page --- README.md | 2 +- src/components/Hero.tsx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eded3e4..599b281 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ This project follows a modular, component-based architecture. Pages are assemble ### Homepage Structure -The homepage (`src/app/(main)/page.tsx`) is composed of the following components: +The homepage (`src/app/(main)/page.tsx`) is composed of the following components, wrapped in ``: - `Hero` - `About` diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx index 66de473..bdd243c 100644 --- a/src/components/Hero.tsx +++ b/src/components/Hero.tsx @@ -4,6 +4,7 @@ import clsx from 'clsx' import { DownloadLink } from '@/components/DownloadLink' import { Button } from '@/components/Button' +import phoneFrame from '@/images/phoneframe.png' import { Container } from '@/components/Container' import logoBbc from '@/images/logos/bbc.svg' import logoCbs from '@/images/logos/cbs.svg' @@ -129,7 +130,7 @@ export function Hero() {