-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
82 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>CARE LiveKit Microfrontend</title> | ||
<style> | ||
body { | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | ||
line-height: 1.6; | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
color: #333; | ||
} | ||
.container { | ||
background-color: #f5f5f5; | ||
border-radius: 8px; | ||
padding: 20px; | ||
margin-top: 40px; | ||
} | ||
h1 { | ||
color: #2563eb; | ||
margin-bottom: 20px; | ||
} | ||
.warning { | ||
background-color: #fff3cd; | ||
border: 1px solid #ffeeba; | ||
border-radius: 4px; | ||
padding: 15px; | ||
margin: 20px 0; | ||
} | ||
.link { | ||
color: #2563eb; | ||
text-decoration: none; | ||
} | ||
.link:hover { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>CARE LiveKit Microfrontend</h1> | ||
|
||
<div class="warning"> | ||
⚠️ This is a microfrontend module and cannot be used as a standalone application. | ||
</div> | ||
|
||
<p> | ||
This repository contains the LiveKit video conferencing microfrontend for the CARE platform. | ||
It is designed to be integrated with the main CARE application. | ||
</p> | ||
|
||
<p> | ||
To use this module, please visit the main CARE application at | ||
<a href="https://github.com/ohcnetwork/care_fe" class="link">github.com/ohcnetwork/care_fe</a> | ||
</p> | ||
|
||
<h2>Technical Details</h2> | ||
<p> | ||
This microfrontend is built using: | ||
<ul> | ||
<li>Vite</li> | ||
<li>Module Federation</li> | ||
<li>LiveKit SDK</li> | ||
<li>React</li> | ||
<li>TypeScript</li> | ||
</ul> | ||
</p> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters