Commit c61d7ef4 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

feat: Lint project

parent 2c8fddaf
Loading
Loading
Loading
Loading
Loading
+20 −11
Original line number Diff line number Diff line
---
import "@/styles/globals.css";
import { Debug } from "astro/components";
import { Button } from '@/components/ui/button';
import { Button } from "@/components/ui/button";
import Header from "../components/Header.astro";
import Footer from "../components/Footer.astro";
import Layout from "../layouts/Layout.astro";
import { ChevronRight } from "lucide-react"
import { ChevronRight } from "lucide-react";
---

<Layout title="Research Activity Index">
    <Header
        title="Research Activity Index"
    />
    <Header title="Research Activity Index" />
    <main>
        <article>
            <section>
                <h2>Project-level insights for lab-wide understanding</h2>
                <h3>We're here to answer the question, "What does ORNL do?"</h3>
                <p>
                    The Research Activity Index (<abbr title="Research Activity Index">RAI</abbr>), part of the <span><a href="https://research.ornl.gov/research-enablement">Research Enablement</a></span> initiative, communicates and improves research by helping people &#8212; including ourselves &#8212; find and understand projects when they come to ORNL to solve scientific challenges.
                    The Research Activity Index (<abbr title="Research Activity Index">RAI</abbr>), 
                    part of the <span><a href="https://research.ornl.gov/research-enablement">Research Enablement</a></span> 
                    initiative, communicates and improves research by helping people
                    &#8212; including ourselves &#8212; find and understand projects
                    when they come to ORNL to solve scientific challenges.
                </p>
            </section>
            <section>
                <h2>The nexus of science and communications</h2>
                <p>
                    The RAI isn't just a method of communicating science &#8212; it's the result of <span>applying science to communications</span>. Structuring, standardizing, and automating content can create actionable data about ORNL research to be analyzed, filtered and searched.
                    The RAI isn't just a method of communicating science &#8212;
                    it's the result of <span>applying science to communications</span>. 
                    Structuring, standardizing, and automating content can
                    create actionable data about ORNL research to be analyzed,
                    filtered and searched.
                </p>
                <p>
                    This allows users to discover insights and create efficiencies that <span>enable new research</span>.
                    This allows users to discover insights and create
                    efficiencies that <span>enable new research</span>.
                </p>
            </section>
            <div class="button-wrapper">
                <Button id="about-learn-more">Learn more <ChevronRight/></Button>
                <Button id="about-learn-more"
                    >Learn more <ChevronRight /></Button
                >
            </div>
        </article>
    </main>
@@ -41,7 +50,7 @@ import { ChevronRight } from "lucide-react"
    const button = document.getElementById("about-learn-more");
    button?.addEventListener("click", () => {
        const url = "https://code.ornl.gov/groups/research-enablement/-/wikis/home";
        window.open(url, '_blank')?.focus();
        window.open(url, "_blank")?.focus();
    });
</script>
<style>