Skip to content

Commit

Permalink
Merge pull request #71 from teknologi-umum/ref/frontend/talk-copywriting
Browse files Browse the repository at this point in the history
ref(frontend): talk copywriting
  • Loading branch information
aldy505 authored Oct 6, 2023
2 parents a0899e7 + 0cc6bff commit 0290102
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/components/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defineProps({
</script>
<template>
<div class="card rounded-2xl bg-white bg-opacity-10 backdrop-blur-lg ">
<div class="card rounded-2xl bg-white bg-opacity-10 backdrop-blur-lg">
<div class="card-image h-100" v-if="image_url">
<img :src="image_url" :alt="`Photo of ${title}`" class="w-full h-full object-cover rounded-t-2xl mb-0">
</div>
Expand Down
4 changes: 2 additions & 2 deletions frontend/components/Rundown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const events = ref([
toHour: '16.00'
},
{
name: 'Surprise Workshop (soon)',
name: 'Minimalism on Product Development: An Algobash Story by Elfino Sitompul',
fromHour: '16.05',
toHour: '16.45'
},
Expand All @@ -41,7 +41,7 @@ const events = ref([
toHour: '18.15'
},
{
name: 'Tanda-Tanda Kamu Punya Skill Issue by Didiet Noor',
name: 'Teks Adalah Mitos by Didiet Noor',
fromHour: '18.15',
toHour: '18.45'
},
Expand Down
10 changes: 8 additions & 2 deletions frontend/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const speakers = ref([
{
name: "Didiet Noor",
title: "Teks adalah Mitos",
description: "Akan berbicara mengenai teks, ascii, unicode, emoji, dan glif",
description: "Semua yang teman-teman ketahui tentang 'teks' hanyalah sebuah mitos. Akan berbicara dan membongkar khurafat mengenai teks, ascii, unicode, emoji, dan glif.",
image: didietImage,
},
{
Expand All @@ -34,6 +34,12 @@ const speakers = ref([
title: "Loving Rust not because of the performance",
description: "Rust dikenal dengan bahasa pemrograman yang cepat. Namun sebenarnya ada sisi lain yang ditawarkan di Rust. Talk kali ini akan membahas apa saja hal yang ditawarkan oleh Rust selain kecepatan.",
image: mustafaImage,
},
{
name: "Elfino Sitompul",
title: "Minimalism on Product Development: An Algobash Story",
description: "Menjadi developer yang produktif, cepat, efisien, dan dicintai oleh team. Menghilangkan hal-hal yang memperlambat proses product development, apalagi di Algobash.",
image: elfinoImage,
}
])
Expand Down Expand Up @@ -82,7 +88,7 @@ const showVideo = ref(false)
<div class="container | mx-auto px-5">
<h2 class="section-title | mb-24 text-center w-full leading-tight">Speakers</h2>
<div class="section-body">
<div class="speakers | grid grid-cols-1 lg:grid-cols-4 gap-10">
<div class="speakers | grid grid-cols-1 lg:grid-cols-3 gap-10">
<Card v-for="speaker in speakers" :key="speaker.name" :image_url="speaker.image" :title="speaker.name" :description="speaker.description"></Card>
</div>
</div>
Expand Down

0 comments on commit 0290102

Please sign in to comment.