Add about us section
This commit is contained in:
@ -8,6 +8,7 @@ Landing page for hypthetical client **Great Music LLM**'s event and employee man
|
|||||||
|
|
||||||
- [`vite`](https://vite.dev/) build tooling
|
- [`vite`](https://vite.dev/) build tooling
|
||||||
- [`tailwindcss`](https://tailwindcss.com/) styling
|
- [`tailwindcss`](https://tailwindcss.com/) styling
|
||||||
|
- [Magic UI](https://magicui.design/) component library
|
||||||
- [`prettier`](https://prettier.io/) code formatting
|
- [`prettier`](https://prettier.io/) code formatting
|
||||||
- [`eslint`](https://eslint.org/) code linting
|
- [`eslint`](https://eslint.org/) code linting
|
||||||
- [`husky`](https://typicode.github.io/husky/) and [`lint-staged`](https://github.com/lint-staged/lint-staged) pre-commit hooks for testing/formatting/linting
|
- [`husky`](https://typicode.github.io/husky/) and [`lint-staged`](https://github.com/lint-staged/lint-staged) pre-commit hooks for testing/formatting/linting
|
||||||
|
|||||||
24
src/app.tsx
24
src/app.tsx
@ -7,7 +7,7 @@ import { TextAnimate } from "./components/ui/text-animate";
|
|||||||
|
|
||||||
export function App() {
|
export function App() {
|
||||||
return (
|
return (
|
||||||
<div className="h-screen w-screen flex flex-col font-merriweather">
|
<div className="h-screen w-screen overflow-hidden flex flex-col font-merriweather">
|
||||||
<Navbar />
|
<Navbar />
|
||||||
<main className="flex-1 overflow-auto">
|
<main className="flex-1 overflow-auto">
|
||||||
<div
|
<div
|
||||||
@ -45,7 +45,27 @@ export function App() {
|
|||||||
</TextAnimate>
|
</TextAnimate>
|
||||||
<PartnersMarquee />
|
<PartnersMarquee />
|
||||||
<span></span> {/* Spacer for DotPattern */}
|
<span></span> {/* Spacer for DotPattern */}
|
||||||
<DotPattern className="-z-10" />
|
<DotPattern className="-z-10 mask-[radial-gradient(300px_circle_at_center,white,transparent)]" />
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-col gap-5 p-6 bg-stone-200 text-center">
|
||||||
|
<TextAnimate
|
||||||
|
animation="blurInUp"
|
||||||
|
by="character"
|
||||||
|
as="h3"
|
||||||
|
className="text-xl font-bold text-center"
|
||||||
|
>
|
||||||
|
About Us
|
||||||
|
</TextAnimate>
|
||||||
|
<p>
|
||||||
|
We are dedicated to simplifying orchestral event management through
|
||||||
|
innovative solutions tailored to the unique needs of orchestras and
|
||||||
|
their audiences.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Our platform streamlines the planning, coordination, and execution
|
||||||
|
of orchestral events, allowing musicians and organizers to focus on
|
||||||
|
what they do best: creating unforgettable musical experiences.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user