Skip to content
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

Add index page and default layout template #13

Merged
merged 3 commits into from
Nov 9, 2024
Merged

Add index page and default layout template #13

merged 3 commits into from
Nov 9, 2024

Conversation

5ouma
Copy link
Owner

@5ouma 5ouma commented Nov 9, 2024

⚠️ Issue

close #


✏️ Description

Combine the all components on the layout and inject the data.


🔄 Type of the Change

  • 🎉 New Feature
  • 🧰 Bug
  • 🛡️ Security
  • 📖 Documentation
  • 🏎️ Performance
  • 🧹 Refactoring
  • 🧪 Testing
  • 🔧 Maintenance
  • 🎽 CI
  • 🧠 Meta

@prlabeler prlabeler bot added the 🎉 New Feature Introduce a new feature label Nov 9, 2024
Copy link

coderabbitai bot commented Nov 9, 2024

Walkthrough

The pull request introduces several changes that enhance the CI workflow and establish new components for metadata handling in an Astro project. A new step to create a meta.json file has been added to the CI workflow, while the .gitignore file has been updated to exclude this file from version control. Additionally, a JSON template for metadata and a layout component for pages have been introduced. The changes also include a new TypeScript definition for metadata structure and tests, along with updates to the main page to utilize these components.

Changes

File Change Summary
.github/workflows/ci.yml Added a step "👾 Create a Meta File" to astro-check, test, and build-check jobs to create meta.json.
.gitignore Updated to ignore meta.json.
meta.tmpl.json Introduced a new JSON template with fields: name, description, icon, contacts, homepage.
src/layouts/Layout.astro Added a layout component that accepts title, description, and icon, populating meta tags in HTML.
src/libs/meta.test.ts Created a test file to validate the structure of the data object from meta.ts.
src/libs/meta.ts Introduced a file that imports data from meta.json and exports it as data with a type definition.
src/pages/index.astro Replaced static HTML with a dynamic layout component, integrating meta properties and child components.
src/types/meta.ts Added a type definition for meta with properties: name, description, icon, contacts, homepage.

Possibly related PRs

  • Add bio component #5: This PR modifies the .github/workflows/ci.yml file by adding a new job to the CI workflow, indicating a direct connection to the CI process similar to the changes made in the main PR.

📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between e75198e and 219ea92.

⛔ Files ignored due to path filters (1)
  • public/favicon.svg is excluded by !**/*.svg
📒 Files selected for processing (8)
  • .github/workflows/ci.yml (3 hunks)
  • .gitignore (1 hunks)
  • meta.tmpl.json (1 hunks)
  • src/layouts/Layout.astro (1 hunks)
  • src/libs/meta.test.ts (1 hunks)
  • src/libs/meta.ts (1 hunks)
  • src/pages/index.astro (1 hunks)
  • src/types/meta.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (6)
  • .github/workflows/ci.yml
  • .gitignore
  • meta.tmpl.json
  • src/libs/meta.test.ts
  • src/libs/meta.ts
  • src/types/meta.ts
🔇 Additional comments (3)
src/layouts/Layout.astro (1)

2-2: Verify CSS variable definition and layout integration.

Two aspects need verification:

  1. The --background CSS variable usage - ensure it's defined in the global CSS
  2. The layout's integration with other components

Also applies to: 35-35

✅ Verification successful

CSS variables and layout integration are properly implemented

The verification confirms:

  • The --background CSS variable is correctly defined in global.css using light/dark mode variants
  • The Layout component is properly imported and used in index.astro

Let's verify if there are any other pages that should be using the Layout:


Layout implementation and CSS variables are correctly configured

The verification confirms:

  • The --background CSS variable is properly defined in global.css with light/dark mode variants
  • index.astro is the only page in the application and correctly uses the Layout component
  • No other pages exist that would require the Layout component
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check if --background variable is defined in global CSS
echo "Checking for --background variable definition:"
rg --type css ":root|--background" src/

# Check layout usage in pages
echo -e "\nChecking layout usage in pages:"
rg "Layout" src/pages/

Length of output: 677


Script:

#!/bin/bash
# List all pages to ensure we haven't missed any
echo "All files under pages directory:"
fd . src/pages/ -t f

# Check if there are any other astro files that might need the layout
echo -e "\nAstro files not importing Layout:"
rg -L "import.*Layout" "\.astro$"

Length of output: 287

src/pages/index.astro (2)

2-6: LGTM! Well-organized imports.

The imports are properly structured and follow a clear organization pattern, with components and data utilities separated into their respective directories.


9-13: 🛠️ Refactor suggestion

Consider adding error handling for meta data.

The component assumes all meta properties exist. Consider adding:

  1. Default values or fallbacks for meta properties
  2. Type checking or validation for the meta object

Let's verify the type definitions and potential error handling:


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

codecov bot commented Nov 9, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (f60abe9) to head (219ea92).
Report is 6 commits behind head on main.

✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff            @@
##              main       #13   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            9        11    +2     
  Lines          142       145    +3     
  Branches        15        16    +1     
=========================================
+ Hits           142       145    +3     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Caution

Inline review comments failed to post. This is likely due to GitHub's limits when posting large numbers of comments.

Actionable comments posted: 5

🧹 Outside diff range and nitpick comments (7)
src/types/meta.ts (2)

1-1: Remove the .ts extension from the import path.

TypeScript resolves module extensions automatically, and it's a best practice to omit the .ts extension in import statements.

-import type { service } from "./services.ts";
+import type { service } from "./services";

3-9: Add JSDoc documentation and consider property validations.

The type definition looks good, but could benefit from documentation and stronger type constraints.

Consider applying these improvements:

+/**
+ * Represents metadata for a profile or entity
+ * @property name - The display name
+ * @property description - A brief description
+ * @property icon - Path or URL to the icon image
+ * @property contacts - List of social media or contact methods
+ * @property homepage - URL to the homepage
+ */
 export type meta = {
   name: string;
   description: string;
   icon: string;
   contacts: { service: service; id: string }[];
-  homepage: string;
+  homepage: `https://${string}` | `http://${string}`; // Ensure valid URL format
 };

Additionally, consider:

  1. Making some fields optional (e.g., description?, icon?) if they aren't always required
  2. Adding a specific type for the icon path/URL if there are format requirements
src/libs/meta.test.ts (1)

1-3: Add type import for better type safety.

Consider importing the meta type to ensure type safety in your test assertions.

import { expect, test } from "vitest";
+import type { meta } from "../types/meta";
import data from "./meta.ts";
src/layouts/Layout.astro (2)

1-6: Consider enhancing prop validation and flexibility.

The Props type definition could be improved to:

  1. Make some fields optional with default values
  2. Add validation for the icon URL format
  3. Include additional meta properties for flexibility
-type Props = { title: string; description: string; icon: string };
+interface Props {
+  title: string;
+  description: string;
+  icon: string;
+  lang?: string;
+  ogType?: string;
+  twitterCard?: "summary" | "summary_large_image" | "app" | "player";
+}
+
+// Provide defaults
+const {
+  title,
+  description,
+  icon,
+  lang = "en",
+  ogType = "website",
+  twitterCard = "summary"
+} = Astro.props;

33-37: Enhance base styling and CSS variables.

The current styling is minimal. Consider adding essential resets and default styles.

 <style>
+  :root {
+    --max-width: 1100px;
+    --border-radius: 12px;
+    --font-mono: ui-monospace, monospace;
+    --foreground: #000;
+    --background: #fff;
+  }
+
   body {
     background-color: var(--background);
+    color: var(--foreground);
+    font-family: system-ui, sans-serif;
+    margin: 0;
+    padding: 0;
+    min-height: 100vh;
   }
+
+  #app {
+    max-width: var(--max-width);
+    margin: 0 auto;
+    padding: 1rem;
+  }
 </style>
.github/workflows/ci.yml (1)

31-32: Refactor repeated meta file creation steps.

The meta file creation step is duplicated across three jobs. Consider creating a reusable composite action to improve maintainability.

Create a new file .github/actions/create-meta-file/action.yml:

name: 'Create Meta File'
description: 'Creates meta.json file from GitHub variable'
runs:
  using: "composite"
  steps:
    - shell: bash
      run: |
        {
          echo '${{ vars.META_FILE }}'
        } >meta.json 2>/dev/null

Then replace the current steps with:

- name: 👾 Create a Meta File
  uses: ./.github/actions/create-meta-file

Also applies to: 62-63, 90-91

src/pages/index.astro (1)

40-54: Refactor duplicate styles into a shared class to improve maintainability.

The styles for #info and #contacts are very similar. To reduce code duplication and improve maintainability, consider creating a shared class or using a common class name for these elements.

Here's how you might refactor the styles:

+#shared-styles {
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  align-items: flex-start;
+}
+
-#info {
-  display: flex;
-  flex-direction: column;
-  justify-content: center;
-  align-items: flex-start;
-  gap: 1.5rem;
-}
+#info {
+  @apply .shared-styles;
+  gap: 1.5rem;
+}
 
-#contacts {
-  display: flex;
-  flex-direction: column;
-  justify-content: center;
-  align-items: flex-start;
-  gap: 0.5rem;
-}
+#contacts {
+  @apply .shared-styles;
+  gap: 0.5rem;
+}

Note: If you're not using a CSS preprocessor that supports @apply, you can add the shared class directly in your markup or use CSS variables.

🛑 Comments failed to post (5)
src/layouts/Layout.astro (2)

28-30: 🛠️ Refactor suggestion

Add semantic structure and accessibility improvements.

The body section should include semantic HTML elements and ARIA landmarks for better accessibility.

 <body>
+  <div id="app" role="application">
+    <main role="main">
       <slot />
+    </main>
+  </div>
 </body>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

  <body>
    <div id="app" role="application">
      <main role="main">
        <slot />
      </main>
    </div>
  </body>

8-27: 🛠️ Refactor suggestion

Enhance meta tags for SEO and security.

Consider adding these important meta tags and security improvements:

 <head>
   <meta charset="UTF-8" />
   <meta name="viewport" content="width=device-width" />
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="robots" content="index,follow">
+  <meta name="theme-color" content="#ffffff">
+  <meta http-equiv="Content-Security-Policy" content="default-src 'self'">
 
   <title>{title}</title>
   <meta name="description" content={description} />
   <link rel="icon" href={icon} />
   <link rel="apple-touch-icon" href={icon} />
 
   <meta property="og:title" content={title} />
   <meta property="og:description" content={description} />
   <meta property="og:image" content={icon} />
+  <meta property="og:type" content={ogType} />
+  <meta property="og:site_name" content={title} />
+  <meta property="og:url" content={Astro.url} />
 
-  <meta name="twitter:card" content="summary" />
+  <meta name="twitter:card" content={twitterCard} />
   <meta name="twitter:title" content={title} />

Committable suggestion skipped: line range outside the PR's diff.

.github/workflows/ci.yml (2)

31-32: ⚠️ Potential issue

Consider potential security implications of echoing variables.

The echo command might expose sensitive metadata in workflow logs. Consider using GitHub's built-in masking for sensitive data or redirecting the output directly without echo.

Apply this change to all three occurrences:

-run: echo '${{ vars.META_FILE }}' >meta.json
+run: |
+  # Prevent potential exposure of sensitive data in logs
+  {
+    echo '${{ vars.META_FILE }}'
+  } >meta.json 2>/dev/null

Also applies to: 62-63, 90-91


31-32: 🛠️ Refactor suggestion

Add error handling for META_FILE variable.

The current implementation doesn't validate the presence or format of the META_FILE variable. This could lead to silent failures or invalid metadata.

Apply this change to all three occurrences:

-run: echo '${{ vars.META_FILE }}' >meta.json
+run: |
+  if [ -z "${{ vars.META_FILE }}" ]; then
+    echo "Error: META_FILE variable is not set"
+    exit 1
+  fi
+  
+  if ! echo '${{ vars.META_FILE }}' | jq . >/dev/null 2>&1; then
+    echo "Error: META_FILE variable is not valid JSON"
+    exit 1
+  fi
+  
+  {
+    echo '${{ vars.META_FILE }}'
+  } >meta.json 2>/dev/null

Also applies to: 62-63, 90-91

src/pages/index.astro (1)

15-17: ⚠️ Potential issue

Add a key prop when rendering the list of <Contact> components.

When rendering a list of components using .map(), it's important to assign a unique key prop to each item to help Astro track elements efficiently and optimize rendering.

Apply this diff to add the key prop:

 {
   meta.contacts.map(({ service, id }) => (
-    <Contact service={service} id={id} />
+    <Contact key={id} service={service} id={id} />
   ))
 }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

          meta.contacts.map(({ service, id }) => (
            <Contact key={id} service={service} id={id} />
          ))

5ouma added 3 commits November 9, 2024 17:17
Imply meta tags and other tags in the head tag.
Astro can import JSON directly as an object.
Combine the components on the layout and inject the data.
Copy link
Contributor

github-actions bot commented Nov 9, 2024

🔦 Lighthouse Result

performance accessibility best-practices seo
🟢 93 🟢 100 🟢 100 🟧 58
📊 Score Scale
Fail Average Pass
🔺 0-49 🟧 50-89 🟢 90-100

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Caution

Inline review comments failed to post. This is likely due to GitHub's limits when posting large numbers of comments.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (3)
src/layouts/Layout.astro (2)

4-5: Consider making props optional for better flexibility.

The Props type currently requires all fields to be provided. Consider making some fields optional with default values for better reusability.

-type Props = { title: string; description: string; icon: string };
+type Props = {
+  title: string;
+  description?: string;
+  icon?: string;
+};
+
+const {
+  title,
+  description = "Default description",
+  icon = "/favicon.ico"
+} = Astro.props;

33-37: Add essential base styles for better cross-browser consistency.

The current styling is minimal. Consider adding some essential base styles for better consistency across browsers.

 <style>
   body {
     background-color: var(--background);
+    margin: 0;
+    padding: 0;
+    min-height: 100vh;
+    font-family: system-ui, -apple-system, sans-serif;
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: grayscale;
   }
+
+  * {
+    box-sizing: border-box;
+  }
 </style>
src/pages/index.astro (1)

25-55: Consider enhancing style maintainability.

The styling is well-organized but could benefit from:

  1. CSS custom properties for repeated values (gaps, paddings)
  2. Documentation comments explaining the layout strategy
 <style>
+  /* Custom properties for consistent spacing */
+  :root {
+    --spacing-sm: 0.5rem;
+    --spacing-md: 1.5rem;
+    --spacing-lg: 3rem;
+  }
+
+  /* Main container with responsive flex layout */
   main {
     display: flex;
-    padding: 3rem;
+    padding: var(--spacing-lg);
     justify-content: center;
     align-items: center;
-    gap: 3rem;
+    gap: var(--spacing-lg);
   }

   @media (max-width: 40rem) {
     main {
       flex-direction: column;
     }
   }

+  /* Info section with vertical stack layout */
   #info {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
-    gap: 1.5rem;
+    gap: var(--spacing-md);
   }

+  /* Contact links vertical stack */
   #contacts {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
-    gap: 0.5rem;
+    gap: var(--spacing-sm);
   }
 </style>
🛑 Comments failed to post (2)
src/layouts/Layout.astro (1)

10-27: 🛠️ Refactor suggestion

Enhance security and accessibility with additional meta tags and attributes.

Consider adding security headers and accessibility improvements to enhance the base layout.

 <html lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width" />
+    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+    <meta http-equiv="Content-Security-Policy" content="default-src 'self'" />
+    <meta name="theme-color" content="#ffffff" />
+    <meta name="robots" content="index,follow" />
 
     <title>{title}</title>

Committable suggestion skipped: line range outside the PR's diff.

src/pages/index.astro (1)

14-18: 🛠️ Refactor suggestion

Add key prop to mapped Contact components.

When rendering lists of components in Astro, each item should have a unique key prop to help with efficient rendering and updates.

 {
   meta.contacts.map(({ service, id }) => (
-    <Contact service={service} id={id} />
+    <Contact service={service} id={id} key={`${service}-${id}`} />
   ))
 }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

        {
          meta.contacts.map(({ service, id }) => (
            <Contact service={service} id={id} key={`${service}-${id}`} />
          ))
        }

@5ouma 5ouma merged commit e747e5d into main Nov 9, 2024
12 checks passed
@5ouma 5ouma deleted the feat-page-index branch November 9, 2024 08:30
This was referenced Nov 9, 2024
5ouma pushed a commit that referenced this pull request Nov 9, 2024
<!-- Release notes generated using configuration in .github/release.yml at main -->

* Add bio component by @5ouma in #5
* Add homepage component by @5ouma in #7
* Add contact component by @5ouma in #9
* Add index page and default layout template by @5ouma in #13
* Astro requires in-file CSS for scoping by @5ouma in #6
* Add README and license by @5ouma in #11
* Exclude Astro and Astrobook related by @5ouma in #8
* Add more test cases for anomalous conditions by @5ouma in #10
* Allow commenting on commits by @5ouma in #3
* Deploy and analyze performance by @5ouma in #12
* Quote meta file variable by @5ouma in #14
* Change the environment variable for repository name by @5ouma in #15
* Don't treat the input as JSON by @5ouma in #16
* chore(deps): pin koki-develop/bun-diff-action action to 22bcd25 by @renovate in #4

* @5ouma made their first contribution in #1
* @renovate made their first contribution in #4
* @github-actions made their first contribution in #2

**Full Changelog**: https://github.com/5ouma/mobicard/commits/v0.1.0
github-actions bot added a commit that referenced this pull request Nov 9, 2024
<!-- Release notes generated using configuration in .github/release.yml at main -->

* Add bio component by @5ouma in #5
* Add homepage component by @5ouma in #7
* Add contact component by @5ouma in #9
* Add index page and default layout template by @5ouma in #13
* Astro requires in-file CSS for scoping by @5ouma in #6
* Add README and license by @5ouma in #11
* Exclude Astro and Astrobook related by @5ouma in #8
* Add more test cases for anomalous conditions by @5ouma in #10
* Allow commenting on commits by @5ouma in #3
* Deploy and analyze performance by @5ouma in #12
* Quote meta file variable by @5ouma in #14
* Change the environment variable for repository name by @5ouma in #15
* Don't treat the input as JSON by @5ouma in #16
* chore(deps): pin koki-develop/bun-diff-action action to 22bcd25 by @renovate in #4

* @5ouma made their first contribution in #1
* @renovate made their first contribution in #4
* @github-actions made their first contribution in #2

**Full Changelog**: https://github.com/5ouma/mobicard/commits/v0.1.0
github-actions bot added a commit that referenced this pull request Nov 9, 2024
<!-- Release notes generated using configuration in .github/release.yml at main -->

* Add bio component by @5ouma in #5
* Add homepage component by @5ouma in #7
* Add contact component by @5ouma in #9
* Add index page and default layout template by @5ouma in #13
* Astro requires in-file CSS for scoping by @5ouma in #6
* Add README and license by @5ouma in #11
* Exclude Astro and Astrobook related by @5ouma in #8
* Add more test cases for anomalous conditions by @5ouma in #10
* Allow commenting on commits by @5ouma in #3
* Deploy and analyze performance by @5ouma in #12
* Quote meta file variable by @5ouma in #14
* Change the environment variable for repository name by @5ouma in #15
* Don't treat the input as JSON by @5ouma in #16
* chore(deps): pin koki-develop/bun-diff-action action to 22bcd25 by @renovate in #4

* @5ouma made their first contribution in #1
* @renovate made their first contribution in #4
* @github-actions made their first contribution in #2

**Full Changelog**: https://github.com/5ouma/mobicard/commits/v0.1.0
@coderabbitai coderabbitai bot mentioned this pull request Nov 16, 2024
11 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🎉 New Feature Introduce a new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant