master
Suvodip 2025-03-05 19:50:00 +05:30
parent 580483a2bd
commit 99e1f347ba
9 changed files with 61 additions and 24 deletions

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 B

View File

@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 36 36">
<path fill="#000" d="M22.25 4h-8.5a1 1 0 0 0-.96.73l-5.54 19.4a.5.5 0 0 0 .62.62l5.05-1.44a2 2 0 0 0 1.38-1.4l3.22-11.66a.5.5 0 0 1 .96 0l3.22 11.67a2 2 0 0 0 1.38 1.39l5.05 1.44a.5.5 0 0 0 .62-.62l-5.54-19.4a1 1 0 0 0-.96-.73Z"/>
<path fill="url(#gradient)" d="M18 28a7.63 7.63 0 0 1-5-2c-1.4 2.1-.35 4.35.6 5.55.14.17.41.07.47-.15.44-1.8 2.93-1.22 2.93.6 0 2.28.87 3.4 1.72 3.81.34.16.59-.2.49-.56-.31-1.05-.29-2.46 1.29-3.25 3-1.5 3.17-4.83 2.5-6-.67.67-2.6 2-5 2Z"/>
<defs>
<linearGradient id="gradient" x1="16" x2="16" y1="32" y2="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#000"/>
<stop offset="1" stop-color="#000" stop-opacity="0"/>
</linearGradient>
</defs>
<style>
@media (prefers-color-scheme:dark){:root{filter:invert(100%)}}
</style>
</svg>

Before

Width:  |  Height:  |  Size: 873 B

View File

@ -1,9 +1,7 @@
--- ---
export interface Props { export interface Props { title: string; description: string; keywords: string; ogUrl: string; ogImage: string;}
title: string;
}
const { title } = Astro.props; const { title, description, keywords, ogUrl, ogImage } = Astro.props;
--- ---
<!DOCTYPE html> <!DOCTYPE html>
@ -11,9 +9,25 @@ const { title } = Astro.props;
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
<title>{title}</title> <title>{title}</title>
<meta name="title" content={title}>
<meta name="description" content={description} />
<meta name="keywords" content={keywords}>
<meta name="author" content='Rajeev Gandhi Youth Computer Institute'>
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="theme-color" content="#0A74DA" />
<meta property="og:type" content="website">
<meta property="og:title" content={title}>
<meta property="og:description" content={description}>
<meta property="og:url" content={ogUrl}>
<meta property="og:image" content={ogImage}>
<meta property="og:site_name" content="Rajeev Gandhi Youth Computer Institute">
<meta property="og:locale" content="en_IN">
</head> </head>
<body> <body>
<slot /> <slot />

View File

@ -4,7 +4,13 @@ import Menu from "../components/Menu.astro";
import Mainfooter from "../components/Mainfooter.astro"; import Mainfooter from "../components/Mainfooter.astro";
import Header from "../components/Header.astro"; import Header from "../components/Header.astro";
--- ---
<Layout title="RGYCI-About-Us"> <Layout
title="About Us - Rajeev Gandhi Youth Computer Institute (RGYCI)"
description="Learn about Rajeev Gandhi Youth Computer Institute (RGYCI), a non-commercial organization dedicated to providing quality computer, technical, and vocational education. Established in 2012, RGYCI supports the 'Skill India' and 'Digital India' initiatives to empower students for global employment."
keywords="About RGYCI, Rajeev Gandhi Youth Computer Institute, computer education, technical training, vocational courses, skill development, IT education, digital India, career growth"
ogUrl="https://rgyci.org/aboutus"
ogImage="/img/sld/8.jpg"
>
<Header/> <Header/>
<Menu/> <Menu/>
<main> <main>

View File

@ -4,7 +4,13 @@ import Menu from "../components/Menu.astro";
import Mainfooter from "../components/Mainfooter.astro"; import Mainfooter from "../components/Mainfooter.astro";
import Header from "../components/Header.astro"; import Header from "../components/Header.astro";
--- ---
<Layout title="Rajeev Gandhi Youth Computer institute-Administrator"> <Layout
title="Administrator - Rajeev Gandhi Youth Computer Institute (RGYCI)"
description="Meet the dedicated leadership team at Rajeev Gandhi Youth Computer Institute (RGYCI). Our experienced administrators ensure quality education, innovation, and skill development to empower students in the IT and technical sectors."
keywords="RGYCI administration, RGYCI leadership, Rajeev Gandhi Youth Computer Institute team, education management, IT training leadership, skill development"
ogUrl="https://rgyci.org/administrator"
ogImage="/img/sld/8.jpg"
>
<Header/> <Header/>
<Menu/> <Menu/>
<main> <main>

View File

@ -4,7 +4,13 @@ import Menu from "../components/Menu.astro";
import Mainfooter from "../components/Mainfooter.astro"; import Mainfooter from "../components/Mainfooter.astro";
import Header from "../components/Header.astro"; import Header from "../components/Header.astro";
--- ---
<Layout title="RGYCI-About-Us"> <Layout
title="Chairman's Message - Rajeev Gandhi Youth Computer Institute (RGYCI)"
description="Read the Chairman's message at Rajeev Gandhi Youth Computer Institute (RGYCI). Our vision is to provide high-quality computer education, vocational training, and skill development, empowering students for a digital future and global opportunities."
keywords="Chairman's message RGYCI, Rajeev Gandhi Youth Computer Institute vision, IT education leadership, skill development goals, digital India initiative"
ogUrl="https://rgyci.org/chairman-message"
ogImage="/img/sld/8.jpg"
>
<Header/> <Header/>
<Menu/> <Menu/>
<main> <main>

View File

@ -5,7 +5,13 @@ import Mainfooter from "../components/Mainfooter.astro";
import Header from "../components/Header.astro"; import Header from "../components/Header.astro";
import Contactfrom from "../components/Contactfrom.vue"; import Contactfrom from "../components/Contactfrom.vue";
--- ---
<Layout title="Welcome to RGYCI - Contact Us"> <Layout
title="Contact Us - Rajeev Gandhi Youth Computer Institute (RGYCI)"
description="Get in touch with Rajeev Gandhi Youth Computer Institute (RGYCI) for inquiries about computer education, vocational training, and skill development programs. Contact us for admissions, course details, and support."
keywords="Contact RGYCI, Rajeev Gandhi Youth Computer Institute contact, IT education support, skill development inquiry, vocational training admission"
ogUrl="https://rgyci.org/contactus"
ogImage="/img/sld/8.jpg"
>
<Header/> <Header/>
<Menu/> <Menu/>
<main> <main>

View File

@ -8,7 +8,13 @@ import Mainfooter from '../components/Mainfooter.astro';
import SwiperOne from '../components/SwiperOne'; import SwiperOne from '../components/SwiperOne';
--- ---
<Layout title="Welcome to RGYCI"> <Layout
title="Rajeev Gandhi Youth Computer Institute (RGYCI) Empowering Digital India Through Quality Education"
description="Rajeev Gandhi Youth Computer Institute (RGYCI) is a non-commercial organization dedicated to providing high-quality computer, technical, and vocational education. Established in 2012, RGYCI is committed to the 'Skill India' and 'Digital India' initiatives, offering job-oriented training at nominal charges. Our students secure employment in reputed organizations globally. Join us in our mission to make India 100% computer literate."
keywords="RGYCI, Rajeev Gandhi Youth Computer Institute, computer education, skill development, vocational training, IT courses, digital India, job-oriented courses, technical education, computer literacy, IT training, career growth, professional training, software development, IT industry, global employment, ISO 9001:2015, education for all, IT solutions"
ogUrl="https://rgyci.org"
ogImage="/img/sld/8.jpg"
>
<Header/> <Header/>
<!-- <Online /> --> <!-- <Online /> -->
<Menu /> <Menu />

View File

@ -5,7 +5,13 @@ import Mainfooter from "../components/Mainfooter.astro";
import Header from "../components/Header.astro"; import Header from "../components/Header.astro";
import CourseAll from "../components/CourseAll.vue"; import CourseAll from "../components/CourseAll.vue";
--- ---
<Layout title="Welcome to RGYCI - Our Online Courses"> <Layout
title="Online Courses - Rajeev Gandhi Youth Computer Institute (RGYCI)"
description="Explore online courses at Rajeev Gandhi Youth Computer Institute (RGYCI). Gain industry-relevant skills through our job-oriented IT and vocational training programs, designed to support Digital India and Skill India initiatives."
keywords="Online courses RGYCI, IT training online, skill development courses, vocational training online, digital learning, career-oriented courses"
ogUrl="https://rgyci.org/online-course"
ogImage="/img/sld/8.jpg"
>
<Header/> <Header/>
<Menu/> <Menu/>