-
Notifications
You must be signed in to change notification settings - Fork 0
feat: added myself to team page #302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
WalkthroughThe changes in this pull request introduce several new files and modifications to existing ones. A Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant DevCard
User->>DevCard: Click to flip card
DevCard->>DevCard: Toggle flip state
DevCard->>User: Show front or back face
Possibly related PRs
Suggested labels
Warning Review ran into problems🔥 ProblemsGitHub Actions: Resource not accessible by integration - https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository. Please grant the required permissions to the CodeRabbit GitHub App under the organization or repository settings. 📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (7)
🚧 Files skipped from review as they are similar to previous changes (6)
⏰ Context from checks skipped due to timeout of 90000ms (2)
Note 🎁 Summarized by CodeRabbit FreeYour organization has reached its limit of developer seats under the Pro Plan. For new users, CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please add seats to your subscription by visiting https://app.coderabbit.ai/login.If you believe this is a mistake and have available seats, please assign one to the pull request author through the subscription management page using the link above. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
✅ Created new PlanetScale Deploy request 42. +CREATE TABLE `Sandbox` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `name` varchar(191) NOT NULL,
+ `funFact` varchar(191) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE InnoDB,
+ CHARSET utf8mb4,
+ COLLATE utf8mb4_unicode_ci;
|
|
✅ Successfully deployed to Vercel. View deployment |
emmabyte
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @bmcallister9008, your changes look good but I think you forgot to actually add your dev card component underneath mine in src/routes/(app)/meet-the-devs/+page.svelte. Basically you're going to want to add something like this
<script lang="ts">
<!-- Your import goes here (lint rule is that imports should be sorted alphabetically) -->
import BlakeDevCard from './(team-members)/(blake-mcallister)/blake-dev-card.svelte';
import ShawnDevCard from './(team-members)/(shawn-long)/shawn-dev-card.svelte';
import TeamMemberCard from './(components)/team-member-card.svelte';
</script>
<main
class="mx-10 mb-10 mt-5 grid max-w-5xl grid-cols-1 gap-x-10 gap-y-10 sm:grid-cols-2 md:grid-cols-3 lg:mx-auto"
>
<div class="col-span-full grid gap-y-5">
<h1 class="text-3xl font-bold">Meet the Devs</h1>
<p class="rounded bg-stone-100 p-4 dark:bg-slate-800">
Welcome to the heart of our team—our amazing developers! 🎉 We’re incredibly proud of
the talented folks who bring creativity, code, and collaboration to every project. Each
dev plays a crucial role in turning ideas into reality, and we’re so grateful for their
hard work and passion. Get to know the brilliant minds behind the keyboard and why we’re
so lucky to have them on board!
</p>
</div>
<TeamMemberCard>
<ShawnDevCard />
</TeamMemberCard>
<!-- Your Component goes here -->
<TeamMemberCard>
<BlakeDevCard />
</TeamMemberCard>
</main>
src/routes/(app)/meet-the-devs/(team-members)/(blake-mcallister)/blake-avatar.svelte
Outdated
Show resolved
Hide resolved
src/routes/(app)/meet-the-devs/(team-members)/(blake-mcallister)/blake-dev-card.svelte
Show resolved
Hide resolved
src/routes/(app)/meet-the-devs/(team-members)/(blake-mcallister)/blake-dev-card.svelte
Outdated
Show resolved
Hide resolved
src/routes/(app)/meet-the-devs/(team-members)/(blake-mcallister)/blake-dev-card.svelte
Outdated
Show resolved
Hide resolved
…changes from previous git push
created team card with avatar.