-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(burma-calendar): update config * reactor: drop next js * refactor: change placeholder of app logo * refactor: move styles to the root level * refactor: pages dir and naming convention
- Loading branch information
1 parent
7c93154
commit 77cdb95
Showing
23 changed files
with
1,016 additions
and
316 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,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"/> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
<title>mCal - The first Cross Myanmar Calendar</title> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1" | ||
/> | ||
<title>Myanmar Calendar - First digital calendar of Myanmar</title> | ||
<meta | ||
name="title" | ||
content="Myanmar Calendar - Myanmar's first digital calendar " | ||
/> | ||
<meta name="description" | ||
content="Myanmar Calendar is a feature-rich calendar app that seamlessly combines the functionality of Gregorian and Myanmar calendars, catering to users who follow both systems. It supports multiple languages, including Myanmar, Mon, English, Tai, and Karen, ensuring a user-friendly experience for individuals from diverse linguistic backgrounds."/> | ||
<meta name="keywords" content="myanmar-calendar, caleadar, burma calendar, burmese calendar"/> | ||
<meta name="robots" content="index, follow"/> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | ||
<meta name="language" content="English"/> | ||
<meta name="revisit-after" content="1 days"/> | ||
<meta name="author" content="Aung Myat Moe"/> | ||
<meta content="width=device-width, initial-scale=1" name="viewport"/> | ||
<meta name="robots" content="all"/> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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,22 @@ | ||
import React from "react"; | ||
import MyanmarCalendar2 from "@/components/MyanmarCalendar2"; | ||
import {Provider} from "react-redux"; | ||
import {store} from "@/store"; | ||
import AppSetupProvider from "@/components/providers/AppSetupProvider"; | ||
import {Analytics} from "@vercel/analytics/react"; | ||
|
||
|
||
const Home = () => { | ||
return ( | ||
<> | ||
<Analytics/> | ||
<Provider store={store}> | ||
<AppSetupProvider> | ||
<MyanmarCalendar2/> | ||
</AppSetupProvider> | ||
</Provider> | ||
</> | ||
); | ||
}; | ||
|
||
export default Home; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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,17 @@ | ||
import React from "react"; | ||
import {BsCalendar2Check} from "react-icons/bs"; | ||
|
||
function AppLogo() { | ||
return ( | ||
<div className="flex items-center gap-3"> | ||
<h1 className="text-[1.8rem] text-gray-500">mCal</h1> | ||
|
||
{/* Hidden markups */} | ||
<h2 className="hidden">Myanmar Calendar</h2> | ||
<h2 className="hidden">မြန်မာ ပြက္ကဒိန်</h2> | ||
<h2 className="hidden">မြန်မာပြက္ကဒိန်</h2> | ||
</div> | ||
); | ||
} | ||
|
||
export default AppLogo; |
22 changes: 0 additions & 22 deletions
22
apps/myanmar_calendar/src/components/ui/logos/LogoLong.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.