wodey-prototype/components/Home_Banner.tsx

22 lines
596 B
TypeScript
Raw Normal View History

2025-04-27 14:17:31 +00:00
import React from "react";
2025-04-27 14:17:31 +00:00
export const Home_Banner: React.FC = () => {
return (
2025-04-27 14:17:31 +00:00
<div className="hero_img">
<div className="hero_text">
<h3>Bring Your Story to Life</h3>
<p>
Start creating your own ebook today share your voice, inspire readers,
and publish to the world in just a few clicks.
</p>
<button>Create an ebook</button>
</div>
<div className="hero_cards">
<div className="card_1"></div>
<div className="card_2"></div>
<div className="card_3"></div>
</div>
</div>
2025-04-27 14:17:31 +00:00
);
};