Skip to content

Commit

Permalink
Merge pull request #15 from AerialRobotics-IITK/new_site
Browse files Browse the repository at this point in the history
minor changes
  • Loading branch information
aerial-robotics-iitk-bot committed Aug 5, 2023
2 parents 5694072 + 2eb8f37 commit 7ad4865
Show file tree
Hide file tree
Showing 29 changed files with 54 additions and 1 deletion.
10 changes: 10 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineConfig } from "astro/config";

import react from "@astrojs/react";
import image from "@astrojs/image";
import partytown from "@astrojs/partytown";
import mdx from "@astrojs/mdx";
Expand All @@ -14,7 +15,16 @@ export default defineConfig({
wrap: true,
},
},
scripts: [
//Include the Bootstrap javascript
{type: 'module', src: '/_merged_assets/bootstrap/dist/js/bootstrap.bundle.min.js'}
],
stylesheets: [
//Include the Bootstrap CSS
{href: '/_merged_assets/bootstrap/dist/css/bootstarp.min.css'}
],
integrations: [
react(),
mdx({
syntaxHighlight: "shiki",
shikiConfig: { theme: "dracula" },
Expand Down
Binary file added public/award.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/award.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/drone.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/drone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/email.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gear.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gear.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/php.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/php.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/sponsors/nvidia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/sponsors/tata motors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/team/y21/atulya1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/team/y21/hardik.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/team/y21/hardik1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/team/y21/harshit.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/team/y21/harshit1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/team/y21/kalika1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/team/y21/praneat1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/team/y21/pulak1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/team/y21/shreya1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/team/y21/varun1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/components/Card_team.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
import "./styles/card.css";
export interface Props {
dark?: boolean;
}
const { dark = false } = Astro.props as Props;
---

<div class={`card-team ${dark && "dark"}`}>
<slot />
</div>
32 changes: 32 additions & 0 deletions src/components/Carousel.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!-- Carousel.astro -->
---
import "./styles/Carousel.css";
---

<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel" >
<!-- <div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div> -->
<div class="carousel-inner" >
<div class="carousel-item active">
<slot name="first"/>
</div>
<div class="carousel-item">
<slot name="second"/>
</div>
<div class="carousel-item">
<slot name="third"/>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>

2 changes: 1 addition & 1 deletion src/components/TwoPanelsTitlePicture.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { title } = Astro.props as Props;

<div class="row">
<div class="fixed">
{title}
<h3>{title}</h3>
</div>
<div class="flex-item">
<slot />
Expand Down
Empty file.
Binary file added src/styles/Galano-Grotesque-Alt-Bold.otf
Binary file not shown.
Binary file added src/styles/Galano-Grotesque-Alt-Medium.otf
Binary file not shown.
Binary file added src/styles/Galano-Grotesque-Alt.otf
Binary file not shown.

1 comment on commit 7ad4865

@vercel
Copy link

@vercel vercel bot commented on 7ad4865 Aug 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.