2025-04-27 14:17:31 +00:00
|
|
|
import React from "react";
|
2025-04-26 22:05:23 +00:00
|
|
|
|
2025-04-27 14:17:31 +00:00
|
|
|
export const Home_Banner: React.FC = () => {
|
2025-04-26 22:05:23 +00:00
|
|
|
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>
|
2025-04-26 22:05:23 +00:00
|
|
|
</div>
|
2025-04-27 14:17:31 +00:00
|
|
|
);
|
|
|
|
|
};
|