Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0c49386
Initial commit for DocMagic
gaurivvv Aug 1, 2025
0a8ffe9
UI imrovement of landing page
Anvesha-24 Aug 11, 2025
64a2e4b
Updated landing page UI
Anvesha-24 Aug 11, 2025
9f211a8
feat: improve landing page UI
Anvesha-24 Aug 13, 2025
c5513d8
Merge branch 'Muneerali199:main' into main
Anvesha-24 Aug 13, 2025
2a98b92
issue create automate merge added
Soumyosish Aug 16, 2025
6f29555
Revert "Fixed Mail issue in ui ."
Muneerali199 Aug 17, 2025
7b98eda
Merge pull request #315 from Muneerali199/revert-299-fix-mail-issue
Muneerali199 Aug 17, 2025
b5802bc
Merge pull request #283 from gaurivvv/add-testimonials-section
Muneerali199 Aug 17, 2025
d13371c
Replaced the navbar by dashboard in mobile or tablet form.
vanshikakhator Aug 17, 2025
b63cabc
hero section UI
Anvesha-24 Aug 17, 2025
09a34ed
Merge branch 'main' of https://github.com/Anvesha-24/DocMagic into la…
Anvesha-24 Aug 17, 2025
e80c5aa
REPLACED THE NAVBAR BY HAMBURGER BAR
vanshikakhator Aug 18, 2025
b191d83
Merge pull request #301 from Anvesha-24/landing_page
Muneerali199 Aug 18, 2025
30c2d90
improved : updated readme with readme details , Also do you want me…
Ayushj0704 Aug 19, 2025
2557137
Merge branch 'main' into Replaced-the-navbar-by-dashboard-in-mobile-o…
vanshikakhator Aug 19, 2025
c438333
Debounced Autosave with exit save
ApurvaNair Aug 23, 2025
a9a6203
Merge pull request #312 from Soumyosish/issue-create-automate-merge
Muneerali199 Aug 26, 2025
498ace0
fix: added hover effects to Customer Love and Social Proof components…
PavanKuppili Aug 26, 2025
f0a47e6
Merge pull request #336 from ApurvaNair/feat/autosave
Muneerali199 Aug 27, 2025
b0ebb84
Merge pull request #326 from Ayushj0704/improve-readme
Muneerali199 Aug 28, 2025
907de11
fix readme design (#340)
codewithdhruba01 Aug 28, 2025
da28d5b
Merge pull request #318 from vanshikakhator/Replaced-the-navbar-by-da…
Muneerali199 Aug 31, 2025
cdcd1e2
Merge pull request #341 from PavanKuppili/main
Muneerali199 Aug 31, 2025
7775abd
contact form implementation
VAMSHIYADAV46 Aug 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key-here
GEMINI_API_KEY=your-gemini-api-key-here

# PEXELS API (Optional - for stock images)

# EMAIL CONFIGURATION
# SMTP server settings for sending emails
EMAIL_HOST=smtp.example.com
EMAIL_PORT=587
[email protected]
EMAIL_PASS=your-email-password

# Email address to receive contact form submissions
[email protected]
PEXELS_API_KEY=your-pexels-api-key-here

# EMAIL CONFIGURATION (Optional)
Expand Down
8 changes: 8 additions & 0 deletions .env.local.example
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ STRIPE_PRICE_ID=price_your_price_id_here
NEXT_PUBLIC_ENABLE_STRIPE=false

# EMAIL CONFIGURATION (Optional)
# SMTP server settings for sending emails
EMAIL_HOST=smtp.example.com
EMAIL_PORT=587
[email protected]
EMAIL_PASS=your-email-password

# Email address to receive contact form submissions
[email protected]
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
[email protected]
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/issue-create-automate-message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Auto Comment on Issue

on:
issues:
types: [opened]

permissions:
issues: write

jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Add Comment to Issue
uses: actions/github-script@v6
with:
script: |
const issueNumber = context.issue.number;
const commentBody = `### Thank you for raising this issue!\n We'll review it as soon as possible. We truly appreciate your contributions! ✨\n\n> Meanwhile make sure you've visited the README.md, CONTRIBUTING.md, and CODE_OF_CONDUCT.md before creating a PR for this. Also, please do NOT create a PR until this issue has been assigned to you. 😊`;

await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
body: commentBody
});

console.log('Comment added successfully.');
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.env.local
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
Expand Down
Loading