Skip to content

Commit

Permalink
partners heading
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekpal1 committed Nov 11, 2023
1 parent 2ac10f8 commit 81b8edc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 137 deletions.
121 changes: 0 additions & 121 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,124 +47,3 @@ All commands are run from the root of the project, from a terminal:
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro preview` |
| `npm run astro --help` | Get help using the Astro CLI |


## directories structure
.
├── astro.config.mjs
├── bun.lockb
├── netlify.toml
├── package.json
├── public
│ ├── favicon.png
│ ├── fossconf-dark.svg
│ ├── fossconf-green.png
│ ├── images
│ │ ├── bgsquare.svg
│ │ └── iiitdelhi.svg
│ └── manifest.webmanifest
├── README.md
├── src
│ ├── components
│ │ ├── external.svg
│ │ ├── Footer.astro
│ │ :
│ ├── data
│ │ ├── cfp.ts
│ │ ├── date.ts
│ │ ├── images
│ │ │ ├── speakers
│ │ │ │ ├── nikita.jpg
│ │ │ │ ├── shreya.png
│ │ │ │ ├── Shruti.jpeg
│ │ │ │ :
│ │ │ └── sponsors
│ │ │ ├── microsoft.png
│ │ │ :
│ │ ├── links.ts
│ │ └── schedules
│ │ ├── current.ts
│ │ ├── index.ts
│ │ └── speakers.ts
│ ├── env.d.ts
│ ├── layouts
│ │ ├── globals.css
│ │ └── Layout.astro
│ ├── pages
│ │ ├── _
│ │ │ ├── About.astro
│ │ │ ├── CallForPaper.astro
│ │ │ ├── CodeOfConduct.astro
│ │ │ ├── Console
│ │ │ │ ├── Code.astro
│ │ │ │ ├── Controls.astro
│ │ │ │ └── index.astro
│ │ │ ├── Diversity.astro
│ │ │ ├── FAQpage.astro
│ │ │ ├── Hero
│ │ │ │ ├── Console.svelte
│ │ │ │ :
│ │ │ ├── Keynotes
│ │ │ │ ├── index.astro
│ │ │ │ ├── Keynotes.svelte
│ │ │ │ └── Keynote.svelte
│ │ │ ├── Live
│ │ │ │ └── index.astro
│ │ │ ├── Organisers
│ │ │ │ ├── images
│ │ │ │ │ ├── abhinav.jpeg
│ │ │ │ │ ├── aditya.jpg
│ │ │ │ │ ├── akshat.jpg
│ │ │ │ │ :
│ │ │ │ └── index.astro
│ │ │ ├── Panelists
│ │ │ │ ├── index.astro
│ │ │ │ ├── Panelists.svelte
│ │ │ │ └── Panelist.svelte
│ │ │ ├── Partners
│ │ │ │ ├── index.astro
│ │ │ │ └── logos
│ │ │ │ └── superteam.webp
│ │ │ ├── Schedule
│ │ │ │ ├── _
│ │ │ │ │ └── Schedules.svelte
│ │ │ │ ├── index.astro
│ │ │ │ └── schedule.astro
│ │ │ ├── Speakers
│ │ │ │ ├── index.astro
│ │ │ │ ├── speakers.astro
│ │ │ │ ├── Speakers.svelte
│ │ │ │ └── Speaker.svelte
│ │ │ ├── Sponsors
│ │ │ │ ├── index.astro
│ │ │ │ └── logos
│ │ │ │ ├── googleLogo.png
│ │ │ │ ├── solanaLogo.svg
│ │ │ │ └── Vector.svg
│ │ │ ├── Testimonials
│ │ │ │ ├── index.astro
│ │ │ │ ├── Tweet.astro
│ │ │ │ └── Tweets.astro
│ │ │ ├── Ticket
│ │ │ │ ├── index.astro
│ │ │ │ └── ticket.png
│ │ │ ├── Tickets.astro
│ │ │ ├── venue.astro
│ │ │ └── Volunteers
│ │ │ ├── images
│ │ │ │ ├── Aashima.jpeg
│ │ │ │ ├── Akaash.jpeg
│ │ │ │ :
│ │ │ └── index.astro
│ │ ├── 404.astro
│ │ ├── coc.astro
│ │ ├── discord.astro
│ │ ├── diversity.astro
│ │ ├── faq.astro
│ │ ├── index.astro
│ │ :
│ └── utils
│ ├── date-format.ts
│ ├── prefer-reduced-motion.ts
│ └── text-to-html.ts
└── tsconfig.json
29 changes: 13 additions & 16 deletions src/pages/_/Partners/index.astro
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
---
import { Image } from "astro:assets"
import Google from "./logos/google.png"
import Microdoft from "./logos/Microsoft.png"
// import Superteam from "./logos/superteam.webp"
// import image from "./logos/image.png"
const partners: any[] = [
/*
{
name: 'Google',
images: [Google, Google_2x],
link: 'https://google.com/',
},
{
name: 'Fosscu',
images: [foss, foss_2x],
link: 'https://www.fosscu.org/',
},
*/
// {
// name: 'Superteam',
// images: [Superteam],
// link: 'https://google.com/',
// },
// {
// name: 'Fosscu',
// images: [foss, foss_2x],
// link: 'https://www.fosscu.org/',
// },
]
---

{
partners.length > 0 ? (
<section id="partners" class="rows">
<div>
<h2>Partners</h2>
<h2>Community Partners</h2>
</div>
<div class="partners">
{partners.map(({ name, images: [img1x, img2x], link }) => (
Expand Down Expand Up @@ -62,6 +59,6 @@ const partners: any[] = [
img {
margin: 0;
width: 100%;
max-width: 100%;
height: fit-content;
}
</style>

0 comments on commit 81b8edc

Please sign in to comment.