lexi-legal-assistant
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (3.9%) to scientific vocabulary
Last synced: 6 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: Ancy-1304
- Language: JavaScript
- Default Branch: main
- Size: 77.1 KB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Created 8 months ago
· Last pushed 8 months ago
Metadata Files
Readme
Citation
README.md
Lexi Legal Assistant
Lexi Legal Assistant is a frontend React web application built as part of the LexisG Frontend Intern Test.
It allows users to type a legal query and get a mock AI-generated response with relevant case law citations.
🚀 Live Demo
🔗 Click here to view the hosted site on Netlify
📸 Screenshot
Owner
- Login: Ancy-1304
- Kind: user
- Repositories: 1
- Profile: https://github.com/Ancy-1304
Citation (CitationPanel.jsx)
const CitationPanel = ({ citation }) => {
if (!citation || !citation.text || !citation.link) return null;
return (
<div className="border-l-4 border-blue-500 bg-blue-50 p-3 mb-2 rounded">
<p className="italic text-gray-700">"{citation.text}"</p>
<a
href={citation.link}
target="_blank"
rel="noopener noreferrer"
className="text-blue-700 underline text-sm"
>
Source: {citation.source}
</a>
</div>
);
};
export default CitationPanel;
GitHub Events
Total
- Push event: 4
- Create event: 1
Last Year
- Push event: 4
- Create event: 1