Skip to content

Commit

Permalink
make dashboard more different
Browse files Browse the repository at this point in the history
  • Loading branch information
ysbrandB committed May 27, 2024
1 parent 048280d commit a1aed41
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
BUILD_SOURCE_DIR: .
BUILD_ARTIFACT_STAGING_DIR: build/
BUILD_ARTIFACT_DESTINATION_DIR: /domains/ysbrand.dev/deployment/uploads/
SENTRY_ORG: sa-proto
SENTRY_PROJECT: sa-proto-website
steps:
- name: 🛎️ Checkout project
uses: actions/checkout@v3
Expand Down
15 changes: 10 additions & 5 deletions resources/js/Pages/Dashboard.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<script setup lang="ts">
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue';
import { Head } from '@inertiajs/vue3';
import {Head} from '@inertiajs/vue3';
</script>

<template>
<Head title="Dashboard" />
<Head title="Dashboard"/>

<AuthenticatedLayout>
<template #header>
Expand All @@ -19,10 +19,15 @@ import { Head } from '@inertiajs/vue3';
</div>
</div>

<div class="pt-12 w-50">
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 text-gray-900 dark:text-gray-100">Choice helper</div>
<div class="flex flex-row justify-center items-center">
<div class="w-full p-8 mr-3 bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 text-gray-900 text-2xl dark:text-gray-100">Actuating</div>
</div>
<div class="ml-3 w-full p-8 bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 text-gray-900 text-2xl dark:text-gray-100">Sensing</div>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit a1aed41

Please sign in to comment.