diff --git a/src/pages/about-us.astro b/src/pages/about-us.astro index de2b466..9980805 100644 --- a/src/pages/about-us.astro +++ b/src/pages/about-us.astro @@ -24,6 +24,13 @@ const tnpStaff: Array = [ experties: "Assistant Professor" }, ]; + +export async function getStaticProps() { + return { + title: 'About Us - TCET Training and Placement Cell', + description: 'Learn more about the TCET Training and Placement Cell, its staff, and how to contact them.' + }; +} --- d.slug === event) as EventType; console.log(currentEvent.data) + +export async function getStaticProps() { + return { + title: "TCET Training and Placement Cell - Official Website", + description: "Explore the official website of the Training and Placement Cell at Thakur College of Engineering and Technology. Get information on events, attendance, and more.", + }; +} + ---
  • diff --git a/src/pages/index.astro b/src/pages/index.astro index fa1ffa5..7f492e2 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -6,12 +6,19 @@ import HeroSection from "../components/Hero/HeroSection.astro"; import HomeCharts from "../components/HomeCharts/"; import TopPlaceStudents from "../components/TopPlacedStudents/index.astro"; import StudentAward from "../components/StudentAward/StudentAward.jsx"; + +export async function getStaticProps() { + return { + title: "TCET - Training and Placement Cell", + description: "Explore the official website of the Training and Placement Cell at the Thakur College of Engineering and Technology. Discover top recruiters, student achievements, and more.", + } +} --- -
    +
    diff --git a/src/pages/industry-interaction.astro b/src/pages/industry-interaction.astro index b5aec8d..5059526 100644 --- a/src/pages/industry-interaction.astro +++ b/src/pages/industry-interaction.astro @@ -93,6 +93,13 @@ const IndustryInteractionData: IndustryInteractionType[] = [ }, ]; +export async function getStaticProps() { + return { + title: "Industry Interaction | TCET - Training and Placement Cell", + description: "Explore the industry interaction events organized by the Training and Placement Cell at Thakur College of Engineering and Technology. Learn about the collaborations with leading companies like Infosys and Jio, and gain insights into their corporate culture and hiring processes.", + } +} + // console.log(IndustryInteractionData.slice(0, 2)); --- diff --git a/src/pages/internship.astro b/src/pages/internship.astro index eb8ae2c..b8d728d 100644 --- a/src/pages/internship.astro +++ b/src/pages/internship.astro @@ -102,7 +102,12 @@ const studentRelation = { ] }; - +export async function getStaticProps() { + return { + title: "Internships | TCET - Training and Placement Cell", + description: "Explore the world of internships at Thakur College of Engineering and Technology's Training and Placement Cell. Discover internship opportunities with leading companies and insights into the number of companies providing internships and the students participating in these programs.", + }; +} --- diff --git a/src/pages/placement.astro b/src/pages/placement.astro index 531f475..2989093 100644 --- a/src/pages/placement.astro +++ b/src/pages/placement.astro @@ -349,6 +349,13 @@ const regular: CompanyCardType[] = [ }, ] +export async function getStaticProps() { + return { + title: "Placements | TCET - Training and Placement Cell", + description: "Explore the world of placements at Thakur College of Engineering and Technology's Training and Placement Cell. Discover top companies offering placements and their categories, including Super Dream, Dream, and Regular companies.", + }; +} + ---