Skip to content

Commit

Permalink
feat: add running text on main page
Browse files Browse the repository at this point in the history
  • Loading branch information
FarhanRafid97 committed Aug 25, 2023
1 parent 5ae003b commit aa32b0b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import Navbar from '@/components/modules/Navbar/Navbar';
import AboutMe from '@/components/modules/profile/AboutMe';
import Hero from '@/components/modules/profile/Hero';
import Journey from '@/components/modules/profile/Journey';
import { ParallaxText } from '@/components/modules/profile/RunningText';

export default function App() {
Expand All @@ -12,7 +13,8 @@ export default function App() {
<Navbar />
<Hero />
<AboutMe />
<div className="flex flex-col gap-[-10px]">
<Journey />
<div className="flex flex-col gap-[-10px] mt-12">
<ParallaxText baseVelocity={-5}>Farhan Rafid Syauqi</ParallaxText>
<ParallaxText baseVelocity={-5}>Frontend Engineer</ParallaxText>
</div>
Expand Down

0 comments on commit aa32b0b

Please sign in to comment.