Skip to content

Commit 15eb081

Browse files
committed
Update App.js
1 parent aefa098 commit 15eb081

File tree

1 file changed

+38
-8
lines changed

1 file changed

+38
-8
lines changed

app/demo/App.tsx

+38-8
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,43 @@ import {
88

99
export default function App() {
1010
return (
11-
<MDBDropdown>
12-
<MDBDropdownToggle>Dropdown button</MDBDropdownToggle>
13-
<MDBDropdownMenu>
14-
<MDBDropdownItem>Action</MDBDropdownItem>
15-
<MDBDropdownItem>Another action</MDBDropdownItem>
16-
<MDBDropdownItem>Something else here</MDBDropdownItem>
17-
</MDBDropdownMenu>
18-
</MDBDropdown>
11+
<div className="container">
12+
<div
13+
className="d-flex justify-content-center align-items-center"
14+
style={{ height: "100vh" }}
15+
>
16+
<div className="text-center">
17+
<img
18+
className="mb-4"
19+
src="https://v1.mdbootstrap.com/wp-content/uploads/2022/11/mdb-sale.png"
20+
/>
21+
<h5 className="mb-4">
22+
Only now, you can get all premium features & more with the best
23+
discounts of the year.
24+
</h5>
25+
<p className="mb-4 fw-bold">All offers are LIMITED!</p>
26+
<a
27+
className="btn btn-lg btn-danger fw-bold mb-3"
28+
style={{ backgroundColor: "#e70808" }}
29+
href="https://mdbootstrap.com/sale/november/"
30+
target="_blank"
31+
role="button"
32+
>
33+
Check insane offers
34+
</a>
35+
<hr />
36+
<p className="mt-4 lead fw-bold">
37+
Publish your project with a single command.
38+
</p>
39+
<p className="mt-2">
40+
Use{" "}
41+
<a href="https://mdbgo.com/" className="fw-bold" target="_blank">
42+
<u>MDB GO</u>
43+
</a>{" "}
44+
for a free hosting & deployment tool
45+
</p>
46+
</div>
47+
</div>
48+
</div>
1949
);
2050
}

0 commit comments

Comments
 (0)