Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 40 additions & 1 deletion frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"framer-motion": "^11.15.0",
"lucide-react": "^0.468.0",
"clsx": "^2.1.1"
Expand Down
10 changes: 9 additions & 1 deletion frontend/public/rosetta.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/walid.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 16 additions & 2 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,28 @@

.hero-subtitle {
margin-top: 1.5rem;
font-size: 1.125rem;
color: var(--color-neutral-600);
font-size: 1.25rem;
font-weight: 500;
color: var(--color-neutral-700);
max-width: 32rem;
margin-left: auto;
margin-right: auto;
}

:root.dark .hero-subtitle {
color: var(--color-neutral-300);
}

.hero-tagline {
margin-top: 0.75rem;
font-size: 1rem;
color: var(--color-neutral-500);
max-width: 32rem;
margin-left: auto;
margin-right: auto;
}

:root.dark .hero-tagline {
color: var(--color-neutral-400);
}

Expand Down
14 changes: 11 additions & 3 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,23 @@ function App() {
className="hero-title"
>
Excel Translation
<span className="hero-title-gradient">Made Simple</span>
<span className="hero-title-gradient">Without Breaking It!</span>
</motion.h1>
<motion.p
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: 0.2 }}
className="hero-subtitle"
>
Instantly translate your Excel spreadsheets to any language while preserving formatting and structure.
Formulas, formatting, and structure — preserved.
</motion.p>
<motion.p
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: 0.3 }}
className="hero-tagline"
>
Translate Excel. Keep everything intact.
</motion.p>
</div>

Expand All @@ -46,7 +54,7 @@ function App() {
transition={{ delay: 0.5 }}
className="features-section"
>
<p className="features-text">Supports XLSX and XLS files up to 50MB</p>
<p className="features-text">Supports XLSX files up to 50MB</p>
<div className="features-list">
<Feature icon="🔒" text="Secure Processing" />
<Feature icon="⚡" text="Fast Translation" />
Expand Down
Loading