This project is a simple home page built using HTML, CSS, and TypeScript. It serves as a personal portfolio or company website, showcasing team members and providing information about the company.
simple-home-page
├── src
│ ├── main.ts # Main entry point for the TypeScript application
│ └── types
│ └── index.ts # Type definitions for member data
├── css
│ └── style.css # Styles for the webpage
├── images
├── index.html # Main HTML document
├── package.json # npm configuration file
├── tsconfig.json # TypeScript configuration file
└── README.md # Project documentation
- Responsive Design: The webpage is designed to be responsive and user-friendly across various devices.
- TypeScript Integration: TypeScript is used for type safety and better development experience.
- Dynamic Content: The application can dynamically manage member information and other content.
-
Clone the Repository:
git clone <repository-url> cd simple-home-page
-
Install Dependencies: Make sure you have Node.js installed. Then run:
npm install
-
Build the Project: To compile the TypeScript files, run:
npm run build
-
Run the Application: You can serve the application using a local server. For example, using
lite-server:npm start
Open your browser and navigate to http://localhost:3000 (or the port specified by your server) to view the home page. You can click on the navigation links to explore different sections of the website.
Feel free to submit issues or pull requests if you have suggestions or improvements for the project.