Initial code Commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// src/views/examples/about.js
|
||||
import React from "react";
|
||||
|
||||
const About = () => (
|
||||
<div className="text-center p-4">
|
||||
<img
|
||||
src="https://your-domain.com/about-image.png"
|
||||
alt="About Us"
|
||||
onError={(e) => {
|
||||
e.target.onerror = null;
|
||||
e.target.src = "https://via.placeholder.com/300x200?text=About+Image";
|
||||
}}
|
||||
style={{ width: "300px", height: "200px", objectFit: "cover" }}
|
||||
/>
|
||||
|
||||
<h1 className="text-4xl font-bold text-blue-600">About Us</h1>
|
||||
<p className="mt-4 text-lg text-gray-600">
|
||||
Create new project for new users if you have access. If you don't have access, please contact the admin.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default About;
|
||||
Reference in New Issue
Block a user