diff --git a/dist.zip b/dist.zip
deleted file mode 100644
index 96f218e..0000000
Binary files a/dist.zip and /dev/null differ
diff --git a/robots.txt b/robots.txt
new file mode 100644
index 0000000..8960948
--- /dev/null
+++ b/robots.txt
@@ -0,0 +1,3 @@
+# Allow all search engines to crawl everything
+User-agent: *
+Disallow:
\ No newline at end of file
diff --git a/sitemap.xml b/sitemap.xml
new file mode 100644
index 0000000..8ef2a2b
--- /dev/null
+++ b/sitemap.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+ https://rgyci.org/
+ 2025-03-05T20:16:28+00:00
+ 1.00
+
+
+ https://rgyci.org/aboutus/
+ 2025-03-05T20:16:28+00:00
+ 0.80
+
+
+ https://rgyci.org/chairman-message/
+ 2025-03-05T20:16:28+00:00
+ 0.80
+
+
+ https://rgyci.org/administrator/
+ 2025-03-05T20:16:28+00:00
+ 0.80
+
+
+ https://rgyci.org/online-course/
+ 2025-03-05T20:16:28+00:00
+ 0.80
+
+
+ https://rgyci.org/library/
+ 2025-03-05T20:16:28+00:00
+ 0.80
+
+
+ https://rgyci.org/gallery/
+ 2025-03-05T20:16:28+00:00
+ 0.80
+
+
+ https://rgyci.org/contactus/
+ 2025-03-05T20:16:28+00:00
+ 0.80
+
+
+
+
\ No newline at end of file
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index d4d8b61..6e24ca3 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,7 +1,7 @@
---
-export interface Props { title: string; description: string; keywords: string; ogUrl: string; ogImage: string;}
+export interface Props { title: string; description: string; keywords: string; ogUrl: string; ogImage: string; schema?: object;}
-const { title, description, keywords, ogUrl, ogImage } = Astro.props;
+const { title, description, keywords, ogUrl, ogImage, schema } = Astro.props;
---
@@ -29,6 +29,9 @@ const { title, description, keywords, ogUrl, ogImage } = Astro.props;
+ {schema && (
+
+ )}
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 858840f..c18b1a3 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -6,6 +6,42 @@ import Menu from '../components/Menu.astro';
import IndexSlider from '../components/IndexSlider.vue';
import Mainfooter from '../components/Mainfooter.astro';
import SwiperOne from '../components/SwiperOne';
+
+const schema = {
+ "@context": "https://schema.org",
+ "@type": "LocalBusiness",
+ "name": "Rajeev Gandhi Youth Computer Institute – Kumra Centre",
+ "description": "A computer training institute offering a range of diploma and advanced diploma courses in computer applications, hardware, networking, cyber security, and more.",
+ "image": "https://rgyci.org/img/sld/8.jpg",
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "Gourbanga Road, Vill. Kumra, P.O. Kumra Kashipur, PS Habra",
+ "addressLocality": "Kumra, Habra",
+ "addressRegion": "West Bengal",
+ "postalCode": "743271",
+ "addressCountry": "IN"
+ },
+ "telephone": "+91-7318992100",
+ "openingHoursSpecification": [
+ {
+ "@type": "OpeningHoursSpecification",
+ "dayOfWeek": [
+ "Monday",
+ "Tuesday",
+ "Wednesday",
+ "Thursday",
+ "Friday",
+ "Saturday"
+ ],
+ "opens": "11:00",
+ "closes": "17:00"
+ }
+ ],
+ "url": "https://rgyci.org/",
+ "sameAs": [
+ "https://www.facebook.com/rgyci"
+ ]
+};
---
+ schema={schema}
+>
@@ -246,72 +283,4 @@ import SwiperOne from '../components/SwiperOne';
height: auto;
}
}
- @media screen and (min-width: 801px) {
- .youtube-area {
- width: 100%;
- height: 500px;
- }
- }
-
- @media screen and (max-width: 900px) {
- .youtube-area {
- width: 360px;
- height: 300px;
- }
- }
- .border-bottom {
- border-bottom: 2px solid #000000;
- }
- .bg {
- width: 100%;
- height: 100%;
- }
- .position {
- width: 100%;
- position: absolute ;
- bottom: 0%;
- font-size: 20px;
- background-color: rgb(0, 0, 0); opacity:0.6;
-
- }
- .box1 {
- width: 100%;
- height: auto;
- /* border-top-right-radius: full; */
- /* border-bottom-right-radius: full; */
- }
- .box2 {
- width: 100%;
- height: auto;
- border-top-left-radius: 200px;
- border-bottom-left-radius: 200px;
- padding-top: 48px;
- padding-bottom: 84px;
- }
- .area {
- width: 300px;
- height: 450px;
- background-color: rgb(255, 255, 255);
- border-radius: 16px;
- }
- .hr {
- border-top: 2px solid red;
- }
- .img-size {
- width: 300px;
- height: 200px;
- }
- .button-place {
- position: sticky;
- width: 100%;
- bottom: 0px;
- position: fixed;
- }
- .h1-text {
- font-size: 20px;
- color: black;
- }
- .h1-text:hover {
- color: rgb(211, 162, 0);
- }
-
\ No newline at end of file
+ @media screen and
\ No newline at end of file