-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
90 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,10 @@ | |
.narrative { | ||
max-width: 40rem; | ||
} | ||
/* Handle markdown output */ | ||
#recommendations li p { | ||
margin-bottom: 0; | ||
} | ||
</style> | ||
</head> | ||
|
||
|
@@ -39,16 +43,28 @@ | |
</nav> | ||
|
||
<div class="container"> | ||
<h1 class="display-1 my-4 text-center">Report Gen</h1> | ||
<h1 class="display-1 my-4 text-center">Automated letter generation</h1> | ||
|
||
<div class="narrative mx-auto"> | ||
<p>Automated letter generation is increasingly important in various industries, particularly in compliance and regulatory environments. Organizations often need to generate standardized letters for enforcement actions, notifications, or compliance communications.</p> | ||
<p>The solution consists of three main components:</p> | ||
<ul> | ||
<li><strong>Data Layer</strong>: Structured Data, Knowledge Repository, Document Templates, Research Artifacts, etc.</li> | ||
<li><strong>Processing Layer</strong>: Generative AI & business rules</li> | ||
<li><strong>Visualization Layer</strong> : inal document in desired format</li> | ||
</ul> | ||
<p>This tool aims to streamline the creation of compliance-related documents while ensuring accuracy and adherence to regulations. The use of advanced technology enhances efficiency and reduces manual effort in document preparation.</p> | ||
</div> | ||
|
||
<div id="demos" class="row row-cols-1 row-cols-sm-2 row-cols-lg-3 row-cols-xl-4 my-5"> | ||
|
||
<div id="demos" class="row row-cols-1 row-cols-sm-2 row-cols-lg-3 my-5"> | ||
<div class="col py-3"> | ||
<div class="demo card h-100 text-decoration-none"> | ||
<div class="card-body"> | ||
<h5 class="card-title">VAPT test</h5> | ||
<p class="card-text">Generate a VAPT test report.</p> | ||
<button class="btn btn-primary generate" data-src="vapt.xlsx"><i class="bi bi-gear"></i> Generate</button> | ||
<a class="btn btn-secondary" href="vapt.xlsx"><i class="bi bi-download"></i> Download</a> | ||
<button class="btn btn-primary mb-3 generate" data-src="vapt.xlsx"><i class="bi bi-gear"></i> Generate</button> | ||
<a class="btn btn-secondary mb-3" href="vapt.xlsx"><i class="bi bi-download"></i> Download</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
@@ -68,26 +84,13 @@ <h5 class="card-title">Custom Report</h5> | |
<div id="login" class="my-5"></div> | ||
|
||
<div id="output"></div> | ||
|
||
</div> | ||
|
||
|
||
<footer class="my-5 vh-100 d-flex align-items-center justify-content-center"> | ||
<h1 class="display-4">Designed by <a href="https://gramener.com/" class="text-reset link-offset-3 link-underline link-underline-opacity-25">Gramener</a></h1> | ||
</footer> | ||
|
||
<div id="item-modal" class="modal" tabindex="-1"> | ||
<div class="modal-dialog modal-xl"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h5 class="modal-title">Item</h5> | ||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> | ||
</div> | ||
<div class="modal-body"></div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" type="module"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@gramex/[email protected]/dist/dark-theme.js" type="module"></script> | ||
<script src="script.js" type="module"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters