22 lines
596 B
TypeScript
22 lines
596 B
TypeScript
import React from "react";
|
|
|
|
export const Home_Banner: React.FC = () => {
|
|
return (
|
|
<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>
|
|
);
|
|
};
|